forked from yjs/y-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.29 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
88
89
90
91
{
"name": "y-trystero",
"version": "10.3.0",
"description": "WebRTC provider for Yjs",
"type": "module",
"main": "./dist/y-trystero.cjs",
"types": "./dist/src/y-trystero.d.ts",
"module": "./src/y-trystero.js",
"unpkg": "./src/y-trystero.mjs",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"exports": {
"module": "./src/y-trystero.js",
"import": "./src/y-trystero.js",
"require": "./dist/y-trystero.cjs",
"types": "./dist/src/y-trystero.d.ts"
},
"scripts": {
"clean": "rm -rf dist",
"start": "node ./bin/server.js",
"debug": "concurrently 'http-server -o index.html' 'npm run watch'",
"demo": "SERVE=true npm run watch",
"deploy": "npm run dist && gh-pages -d dist/demo",
"dist": "rollup -c",
"types": "tsc",
"watch": "rollup -wc",
"test": "npm run lint",
"lint": "standard && tsc",
"lint:fix": "standard --fix",
"preversion": "npm run clean && npm run lint && npm run dist && npm run types"
},
"files": [
"dist/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WinstonFassett/y-trystero.git"
},
"keywords": [
"Yjs",
"Trystero",
"WebRTC"
],
"author": "Winston Fassett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WinstonFassett/y-trystero/issues"
},
"homepage": "https://github.com/WinstonFassett/y-trystero#readme",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"dependencies": {
"lib0": "^0.2.42",
"y-protocols": "^1.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"concurrently": "^5.3.0",
"gh-pages": "^6.1.1",
"http-server": "^0.12.3",
"lit-html": "^1.1.0",
"rollup": "^1.32.1",
"rollup-cli": "^1.0.9",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-terser": "^5.3.1",
"standard": "^14.3.4",
"typescript": "^4.4.4",
"yjs": "^13.6.8"
},
"peerDependencies": {
"trystero": "^0.18.0",
"yjs": "^13.6.8"
},
"optionalDependencies": {
"ws": "^8.14.2"
},
"engines": {
"node": ">=12"
}
}