-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 883 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
{
"name": "bitcoin-wallet-generator",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node bootstrap.js ./src/index.ts",
"dev": "node bootstrap.js ./src/dev.ts",
"postinstall": "node bootstrap.js ./src/other/postinstall.ts"
},
"author": "fraggdiller",
"license": "MIT",
"dependencies": {
"ethers": "^6.12.0",
"bs58check": "^3.0.1",
"bech32": "^2.0.0",
"ecpair": "^2.1.0",
"tiny-secp256k1": "^2.2.3",
"ecurve": "^1.0.6",
"@scure/bip39": "^1.3.0",
"bip-schnorr": "^0.6.7",
"bs58": "^5.0.0",
"exceljs": "^4.4.0"
},
"devDependencies": {
"typescript": "^5.4.5",
"ts-node": "^10.9.2",
"eslint": "^8.57.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@types/ecurve": "^1.0.3"
}
}