forked from yjs/y-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
{
"name": "y-webrtc",
"version": "10.1.0",
"description": "WebRTC provider for Yjs",
"main": "./dist/y-webrtc.cjs",
"module": "./src/y-webrtc.js",
"sideEffects": false,
"scripts": {
"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": "rm -rf dist && rollup -c",
"watch": "rollup -wc",
"lint": "standard && tsc",
"preversion": "npm run lint && npm run dist"
},
"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": {
"lib0": "^0.2.3",
"simple-peer": "^9.6.2",
"y-protocols": "^0.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"concurrently": "^5.0.0",
"http-server": "^0.12.1",
"rollup": "^1.29.0",
"rollup-cli": "^1.0.9",
"rollup-plugin-terser": "^5.2.0",
"standard": "^12.0.1",
"typescript": "^3.7.3",
"yjs": "^13.0.0-105"
},
"peerDependenies": {
"yjs": ">=13.0.0-103"
},
"optionalDependencies": {
"ws": "^7.2.0"
},
"engines": {
"node": "10.x"
}
}