-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@riaskov/xpub2address",
"version": "1.0.1",
"description": "Extract bitcoin address from xpub for BIP49 and BIP84 schemes.",
"license": "MIT",
"repository": "ARyaskov/xpub2Address",
"author": {
"name": "Andrei Riaskov",
"email": "[email protected]"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"source": "./index.ts",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"xpub2Address",
"bitcoin",
"btc",
"bip",
"bip49",
"bip84"
],
"scripts": {
"build:rollup": "rollup -c",
"build": "tsc",
"test": "tsx test.ts",
"format": "prettier --write \"./*.ts\""
},
"dependencies": {
"@types/node": "^20.14.2",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.6",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.15.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^4.0.0-alpha.8",
"rollup": "^4.18.0",
"tslib": "^2.6.3",
"typescript": "5.5.1-rc"
}
}