-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "keyforge",
"version": "1.0.0",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn src/index.ts",
"package": "npm run build && pkg ."
},
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"node18-macos-x64",
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "bin"
},
"keywords": [
"crypto",
"wallet",
"generator",
"blockchain",
"bitcoin",
"ethereum",
"solana",
"libre",
"cli",
"keys"
],
"author": "",
"license": "ISC",
"description": "A powerful multi-chain crypto wallet generator with beautiful CLI interface",
"dependencies": {
"@solana/web3.js": "^1.98.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"chalk": "^4.1.2",
"ecpair": "^3.0.0-rc.0",
"ed25519-hd-key": "^1.3.0",
"eosjs-ecc": "^4.0.7",
"ethers": "^6.11.1",
"inquirer": "^8.2.6",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@types/inquirer": "^8.2.10",
"@types/node": "^20.11.24",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}