-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "dat-sdk",
"version": "2.0.0-0",
"description": "The official Dat SDK",
"main": "index.js",
"scripts": {
"test": "node test",
"build-test": "browserify -d test.js > test-bundle.js",
"build-test-promise": "browserify -d test-promise.js > test-bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datproject/sdk.git"
},
"keywords": [
"dat",
"sdk",
"hyperdrive",
"hypercore",
"p2p"
],
"author": "datproject",
"license": "MIT",
"bugs": {
"url": "https://github.com/datproject/sdk/issues"
},
"browser": {
"dat-dns": "./dns-web.js",
"hyperswarm": "hyperswarm-web",
"./localstorage": "./localstorage-web.js"
},
"homepage": "https://github.com/datproject/sdk#readme",
"dependencies": {
"concat-stream": "^2.0.0",
"corestore": "^5.0.8",
"corestore-swarm-networking": "^4.0.3",
"dat-dns": "^4.0.0",
"dat-encoding": "^5.0.1",
"dom-event-target": "^1.0.0",
"global": "^4.4.0",
"hex-to-32": "^2.0.0",
"hypercore": "^8.7.0",
"hypercore-crypto": "^1.0.0",
"hypercore-protocol": "^7.10.0",
"hyperdrive": "^10.8.10",
"hyperswarm-web": "^1.0.1",
"node-localstorage": "^2.1.5",
"random-access-application": "^1.0.0",
"random-access-memory": "^3.1.1",
"universal-localstorage": "^1.0.2",
"universal-prompt": "^1.0.0",
"url-parse": "^1.4.7"
},
"devDependencies": {
"browserify": "^16.2.3",
"hypertrie": "^3.7.1",
"tape": "^4.10.2",
"tmp": "^0.1.0"
}
}