forked from yjs/y-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "y-protocols",
"version": "1.0.1",
"description": "Yjs encoding protocols",
"type": "module",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"files": [
"dist/*",
"auth.*",
"sync.*",
"awareness.*"
],
"scripts": {
"clean": "rm -rf dist *.d.ts */*.d.ts *.d.ts.map */*.d.ts.map",
"dist": "rm -rf dist && rollup -c",
"test": "npm run lint && npm run dist && node dist/test.cjs",
"lint": "standard && tsc",
"types": "tsc --outDir .",
"debug": "rollup -c && concurrently 'rollup -wc' 'http-server -o test.html'",
"preversion": "npm run dist && npm run test && npm run types",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-protocols.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"bugs": {
"url": "https://github.com/yjs/y-protocols/issues"
},
"homepage": "https://github.com/yjs/y-protocols#readme",
"dependencies": {
"lib0": "^0.2.28"
},
"devDependencies": {
"concurrently": "^5.2.0",
"rollup": "^1.29.0",
"standard": "^12.0.1",
"typescript": "^3.8.3",
"yjs": "^13.0.4"
},
"peerDependenies": {
"yjs": "^13.0.0"
}
}