-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@tm9657/y-phoenix",
"version": "1.1.9",
"description": "The Phoenix Channels Provider is meant to be used as a Yjs Provider for [Generic Socket Rooms](https://github.com/TM9657/generic-socket-rooms). It enables End-to-End encryption, realtime communication between multiple users.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"minimize": true,
"splitting": true,
"dts": true,
"sourcemap": true,
"clean": true,
"treeshake": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/TM9657/y-phoenix.git"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"version": "bunx changeset version",
"release": "bun run build && bunx changeset publish --access public",
"build": "tsup src/index.ts --dts",
"dev": "npm run build -- --watch"
},
"keywords": [
"y.js",
"yjs",
"phoenix",
"channels"
],
"author": "TM9657 GmbH",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tm9657/eslint-config-custom": "^1.2.0",
"@tm9657/tsconfig": "latest",
"@types/debug": "^4.1.9",
"@types/node": "^17.0.45",
"bun-types": "latest",
"tsup": "^6.7.0",
"typescript": "^4.5.2",
"yjs": "^13.5.0"
},
"dependencies": {
"@tm9657/socket-client": "latest",
"debug": "^4.3.4",
"js-base64": "^3.7.5",
"lib0": "^0.2.52",
"y-protocols": "^1.0.5"
},
"peerDependencies": {
"yjs": "^13.5.6"
},
"optionalDependencies": {
"y-leveldb": "^0.1.0"
}
}