forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.58 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
{
"name": "@bitpay-labs/bitcore-cli",
"description": "A Bitcore CLI Wallet",
"author": "BitPay, Inc",
"version": "11.6.1",
"licence": "MIT",
"private": true,
"keywords": [
"bitcoin",
"multisig",
"thresholdsig",
"tss",
"wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore/tree/master/packages/bitcore-cli"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore/issues"
},
"contributors": [
{
"name": "Kenny Joseph",
"email": "kjoseph@bitpay.com"
}
],
"bin": {
"wallet": "./bin/wallet"
},
"scripts": {
"test": "tsc --noEmit && npx mocha -r tsx 'test/**/*.ts'",
"build": "tsc",
"postbuild": "node createBin -v",
"clean": "rm -rf ./build",
"compile": "npm run clean && npm run build",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors",
"precommit": "npm run lint"
},
"dependencies": {
"@bitpay-labs/bitcore-mnemonic": "^11.6.0",
"@bitpay-labs/bitcore-wallet-client": "^11.6.1",
"@bitpay-labs/crypto-wallet-core": "^11.6.0",
"@clack/prompts": "1.0.0-alpha.6",
"commander": "14.0.0",
"external-editor": "3.1.0",
"usb": "2.15.0"
},
"devDependencies": {
"@types/chai": "5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"chai": "^5.2.1",
"mocha": "^11.7.1",
"sinon": "^21.0.0",
"source-map-support": "0.5.16",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"gitHead": "d1c7f8b0c3a2e4f5b6c7d8e9f0a1b2c3d4e5f6g7"
}