forked from yjs/y-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.94 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "y-webrtc",
"version": "10.1.8",
"description": "WebRTC provider for Yjs",
"types": "./dist/src/y-webrtc.d.ts",
"module": "./src/y-webrtc.js",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf dist",
"start": "node ./bin/server.js",
"debug": "concurrently 'http-server -o index.html' 'npm run watch'",
"demo": "concurrently 'http-server -o demo/index.html' 'npm run watch'",
"dist": "rollup -c",
"types": "tsc",
"watch": "rollup -wc",
"test": "npm run lint",
"lint": "standard && tsc",
"server:docker:build": "docker build -t y-webrtc-server .",
"preversion": "npm run clean && npm run lint && npm run dist && npm run types"
},
"bin": {
"y-webrtc-signaling": "./bin/server.js"
},
"files": [
"dist/*",
"bin/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-webrtc.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-webrtc/issues"
},
"homepage": "https://github.com/yjs/y-webrtc#readme",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"dependencies": {
"int64-buffer": "^1.0.1",
"lib0": "^0.2.34",
"simple-peer": "^9.11.0",
"y-protocols": "^1.0.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/simple-peer": "^9.6.1",
"concurrently": "^5.3.0",
"http-server": "^0.12.3",
"rollup": "2.78.0",
"rollup-cli": "^1.0.9",
"rollup-plugin-terser": "^5.3.1",
"standard": "^14.3.4",
"typescript": "^3.9.7",
"yjs": "^13.5.45"
},
"peerDependenies": {
"yjs": "^13.5.45"
},
"optionalDependencies": {
"ws": "^7.2.0"
},
"engines": {
"node": ">=10"
}
}