-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
87 lines (87 loc) · 2.09 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
81
82
83
84
85
86
87
{
"name": "y-webrtc",
"version": "10.3.0",
"description": "WebRTC provider for Yjs",
"type": "module",
"main": "./dist/y-webrtc.cjs",
"types": "./dist/src/y-webrtc.d.ts",
"module": "./src/y-webrtc.js",
"unpkg": "./src/y-webrtc.mjs",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"exports": {
"module": "./src/y-webrtc.js",
"import": "./src/y-webrtc.js",
"require": "./dist/y-webrtc.cjs",
"types": "./dist/src/y-webrtc.d.ts"
},
"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",
"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": {
"lib0": "^0.2.42",
"simple-peer": "^9.11.0",
"y-protocols": "^1.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/simple-peer": "^9.11.3",
"concurrently": "^5.3.0",
"http-server": "^0.12.3",
"rollup": "^1.32.1",
"rollup-cli": "^1.0.9",
"rollup-plugin-terser": "^5.3.1",
"standard": "^14.3.4",
"typescript": "^4.4.4",
"yjs": "^13.6.8"
},
"peerDependencies": {
"yjs": "^13.6.8"
},
"optionalDependencies": {
"ws": "^8.14.2"
},
"engines": {
"node": ">=12"
}
}