-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 953 Bytes
/
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
{
"version": "0.0.14",
"name": "btco",
"module": "src/index.ts",
"type": "module",
"bin": {
"btco": "./build/index.js"
},
"exports": {
"bun": "./src/resolution.ts"
},
"scripts": {
"btco": "bun src/index.ts",
"ord:reg": "ord --data-dir=./~ -r --index-sats server -j",
"ord:sig": "ord --data-dir=./~ -s --index-sats server -j --http-port 8081",
"ord": "ord --data-dir=./~ --index-sats server -j --http-port 8100",
"build": "bun build ./src/* --outdir ./build --target node && cp package.json ./build"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/js-yaml": "^4.0.9",
"bun-types": "^1.0.14"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"cbor2": "^1.1.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"js-yaml": "^4.1.0",
"path": "^0.12.7",
"soya-cli": "^0.16.31"
}
}