-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "@bitgo/utxo-bin",
"description": "Command-line utility for BitGo UTXO transactions",
"version": "3.16.0",
"files": [
"dist/**/*"
],
"keywords": [
"bitgo",
"utxo",
"bitcoinjs",
"bitcoin"
],
"scripts": {
"prepare": "npm run build",
"build": "yarn tsc --build --incremental --verbose .",
"lint": "eslint --quiet .",
"unit-test": "mocha --recursive test/",
"fmt": "prettier --write '{bin,src,test}/**/*.{ts,js}'",
"precommit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/utxo-bin"
},
"bin": "./dist/bin/index.js",
"dependencies": {
"@bitgo/blockapis": "^1.12.12",
"@bitgo/statics": "^58.21.0",
"@bitgo/unspents": "^0.50.14",
"@bitgo/utxo-core": "^1.30.0",
"@bitgo/utxo-lib": "^11.19.1",
"@bitgo/wasm-utxo": "^1.27.0",
"@noble/curves": "1.8.1",
"archy": "^1.0.0",
"bech32": "^2.0.0",
"bitcoinjs-lib": "npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11",
"bs58": "^5.0.0",
"bs58check": "^2.1.2",
"cashaddress": "^1.1.0",
"chalk": "4",
"clipboardy": "^4.0.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/archy": "^0.0.32",
"@types/yargs": "17.0.19",
"bip32": "^3.1.0"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}