forked from zahin-mohammad/recover-btc-with-backup-bitgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "recover-v1-safe-wallet",
"version": "1.0.0",
"description": "Recover v1 safe wallet funds with user and backup keys",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"package": "pkg ./",
"recover": "yarn run ts-node index.ts"
},
"bin": {
"recover": "./dist/index.js"
},
"pkg": {
"scripts": [
"dist/index.js",
"dist/common.js",
"node_modules/fp-ts/function",
"node_modules/fp-ts/Either",
"node_modules/fp-ts/Json",
"node_modules/fp-ts/Option",
"node_modules/fp-ts/ReadonlyNonEmptyArray"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pengyuc-bitgo/recover-v1-btc-with-backup-bitgo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pengyuc-bitgo/recover-v1-btc-with-backup-bitgo/issues"
},
"homepage": "https://github.com/pengyuc-bitgo/recover-v1-btc-with-backup-bitgo#readme",
"dependencies": {
"@bitgo/abstract-utxo": "^3.17.0",
"@bitgo/utxo-lib": "^9.15.0",
"@bitgo/sdk-api": "^1.23.0",
"@bitgo/sdk-core": "^8.25.0",
"@bitgo/sdk-coin-btc": "^1.7.12",
"cmd-ts": "^0.13.0",
"dotenv": "^16.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-cached-transpile": "^0.0.6"
}
}