-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 1.91 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
{
"name": "y-dat",
"version": "0.0.1",
"description": "Dat provider for Yjs",
"main": "./dist/y-dat.cjs",
"types": "./dist/src/y-dat.d.ts",
"module": "./src/y-dat.js",
"sideEffects": false,
"scripts": {
"start": "npm run demo",
"demo": "webpack-dev-server",
"debug": "concurrently 'http-server -o index.html' 'npm run watch'",
"dist": "rollup -c",
"watch": "rollup -wc",
"test": "npm run lint",
"lint": "standard && tsc",
"clean": "rm -rf dist",
"preversion": "npm run clean && npm run lint && npm run dist"
},
"files": [
"dist/*",
"bin/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-dat.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-dat/issues"
},
"homepage": "https://github.com/yjs/y-dat#readme",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"dependencies": {
"buffer": "^5.6.0",
"dat-sdk": "^1.0.3",
"lib0": "^0.2.28",
"random-access-memory": "^3.1.1",
"universal-dat-storage": "^1.3.5",
"y-protocols": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/simple-peer": "^9.6.0",
"concurrently": "^5.2.0",
"http-server": "^0.12.3",
"quill": "^1.3.7",
"quill-cursors": "^3.0.1",
"rollup": "^1.32.1",
"rollup-cli": "^1.0.9",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-pluginutils": "^2.8.2",
"standard": "^14.3.4",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"y-quill": "^0.1.1",
"yjs": "^13.1.1"
},
"peerDependenies": {
"yjs": "^13.0.0"
},
"optionalDependencies": {
"ws": "^7.2.0"
},
"engines": {
"node": ">=10"
}
}