-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 KB
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
{
"name": "hyper-sdk",
"version": "6.2.2",
"description": "A Software Development Kit for the Hypercore-Protocol",
"type": "module",
"exports": {
".": {
"default": "./index.js",
"types": "./dist/index.d.ts"
}
},
"imports": {
"events": {
"default": "bare-events"
},
"stream": {
"default": "bare-stream"
},
"path": {
"default": "bare-path"
}
},
"types": "dist",
"scripts": {
"test": "npm run test:node && npm run test:bare",
"test:bare": "bare test.js",
"test:node": "node test.js",
"lint": "standard --fix && tsc",
"upgrade-hyper": "npm i --save corestore@latest hypercore@latest hyperswarm@latest hyperdrive@latest hyperbee@latest z32@latest b4a@latest bare-events@latest bare-fetch@latest bare-os@latest bare-path@latest bare-stream@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.7.3",
"bare-events": "^2.8.2",
"bare-fetch": "^2.5.1",
"bare-os": "^3.6.2",
"bare-path": "^3.0.0",
"bare-stream": "^2.7.0",
"corestore": "^7.6.1",
"dns-query": "^0.11.2",
"hyperbee": "^2.26.5",
"hypercore": "^11.20.1",
"hyperdrive": "^13.0.2",
"hyperswarm": "^4.16.0",
"rocksdb-native": "^3.5.10",
"test-tmp": "^1.4.0",
"z32": "^1.1.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.8",
"@types/b4a": "^1.6.5",
"@types/brittle": "^3.5.0",
"@types/compact-encoding": "^2.15.0",
"@types/node": "^25.0.3",
"@types/streamx": "^2.9.5",
"bare": "^1.22.0",
"brittle": "^3.7.0",
"standard": "^17.0.0",
"tape": "^5.6.1",
"tmp-promise": "^3.0.3",
"typescript": "^5.9.3"
}
}