-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "ipfs-crdt-shared-editing",
"version": "1.0.0",
"description":
" Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "http-server -c-1 -p 1234 docs",
"dev": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigzmv/IPFS-CRDT-shared-editing.git"
},
"keywords": ["ipfs", "crdt", "realtime"],
"author": "Vignesh M",
"license": "MIT",
"bugs": {
"url": "https://github.com/vigzmv/IPFS-CRDT-shared-editing/issues"
},
"homepage": "https://github.com/vigzmv/IPFS-CRDT-shared-editing#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"http-server": "^0.11.1",
"ipfs": "^0.26.0",
"webpack": "^3.8.1",
"y-array": "^10.1.4",
"y-ipfs-connector": "^1.6.0",
"y-memory": "^8.0.9",
"y-text": "^9.5.1",
"yjs": "^12.3.3"
}
}