-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@spacesprotocol/fabric",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "node dist/test/runner.js",
"test:generate": "npm run build && brittle -r dist/test/runner.js dist/test/*.js"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bin": {
"fabric": "./dist/bin/fabric.js",
"beam": "./dist/bin/beam.js"
},
"dependencies": {
"b4a": "^1.3.1",
"bech32": "^2.0.0",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.6",
"commander": "^12.1.0",
"compact-encoding": "^2.4.1",
"dns-packet": "^5.6.1",
"hypercore-crypto": "3.4.2",
"hyperdht": "6.18.0",
"sodium-universal": "^4.0.0",
"tiny-secp256k1": "^2.2.3",
"unslab": "^1.3.0",
"xache": "^1.1.0"
},
"devDependencies": {
"@types/b4a": "^1.6.4",
"@types/brittle": "^3.5.0",
"@types/dns-packet": "^5.6.5",
"@types/node": "^22.7.5",
"@types/streamx": "^2.9.5",
"brittle": "^3.0.0",
"graceful-goodbye": "^1.3.0",
"newline-decoder": "^1.0.2",
"standard": "^17.1.0",
"typescript": "^5.6.3"
}
}