-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
36 lines (36 loc) · 1013 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
{
"name": "@chainify/bitcoin",
"version": "2.3.0",
"description": "",
"author": "Liquality <[email protected]>",
"homepage": "",
"license": "ISC",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf node_modules .turbo dist"
},
"dependencies": {
"@chainify/client": "workspace:*",
"@chainify/errors": "workspace:*",
"@chainify/types": "workspace:*",
"@chainify/utils": "workspace:*",
"@types/bip32": "^2.0.0",
"@types/bip39": "^3.0.0",
"@types/bitcoinjs-lib": "^5.0.0",
"@types/lodash": "^4.14.178",
"@types/memoizee": "^0.4.7",
"bip174": "^2.0.1",
"bip32": "2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "5.2.0",
"bitcoinjs-message": "2.2.0",
"coinselect": "^3.1.12",
"lodash": "4.17.21",
"memoizee": "^0.4.15"
}
}