-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 Bytes
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
{
"name": "btcli",
"version": "0.1.0",
"description": "A simple command line Bitcoin explorer",
"bin": {
"btcli": "bin/btcli.js"
},
"scripts": {
"pregenerate:deb": "npm install",
"generate:deb": "node-deb --install-strategy copy -- bin/btcli.js bin/ utils/ servers.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxidev/btcli.git"
},
"keywords": [
"bitcoin",
"explorer",
"blockchain"
],
"author": "Maxi Dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxidev/btcli/issues"
},
"node_deb": {
"entrypoints": {
"daemon": "bin/btcli.js"
}
},
"homepage": "https://github.com/maxidev/btcli#readme",
"dependencies": {
"@codewarriorr/electrum-client-js": "^0.1.1",
"axios": "^0.21.1",
"bitcoinjs-lib": "^5.2.0",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"lodash": "^4.17.20",
"ora": "^5.3.0",
"terminal-link": "^2.1.1"
}
}