-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
52 lines (52 loc) · 1.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
{
"name": "hyper-sdk",
"version": "5.1.0",
"description": "A Software Development Kit for the Hypercore-Protocol",
"type": "module",
"exports": {
".": {
"default": "./index.js"
}
},
"scripts": {
"test": "node test.js",
"lint": "standard --fix",
"upgrade-hyper": "npm i --save corestore@latest hypercore@latest hyperswarm@latest hyperdrive@latest hyperbee@latest hypercore-protocol@latest z32@latest b4a@latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rangermauve/hyper-sdk.git"
},
"keywords": [
"dat",
"sdk",
"hyperdrive",
"hypercore",
"hypercore-protocol",
"p2p"
],
"author": "RangerMauve",
"license": "MIT",
"bugs": {
"url": "https://github.com/rangermauve/hyper-sdk/issues"
},
"homepage": "https://github.com/rangermauve/hyper-sdk#readme",
"dependencies": {
"b4a": "^1.6.7",
"corestore": "^6.18.4",
"dns-query": "^0.11.2",
"hyperbee": "^2.20.4",
"hypercore": "^10.37.25",
"hypercore-protocol": "^8.0.7",
"hyperdrive": "^11.13.0",
"hyperswarm": "^4.8.4",
"random-access-application": "^2.0.0",
"random-access-memory": "^6.2.0",
"z32": "^1.1.0"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.6.1",
"tmp-promise": "^3.0.3"
}
}