forked from yerofey/cryptowallet-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@yerofey/cryptowallet-cli",
"version": "1.8.2",
"type": "module",
"homepage": "https://github.com/yerofey/cryptowallet-cli",
"author": "Yerofey S. <[email protected]> (https://github.com/yerofey)",
"license": "MIT",
"bin": {
"cryptowallet": "cli.js",
"cw": "cli.js"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"scripts": {
"lint": "pnpm exec eslint src/*.js",
"test": "ava"
},
"files": [
"cli.js",
"./src/"
],
"keywords": [
"cli",
"cli-app",
"console",
"command-line",
"terminal",
"generator",
"crypto",
"cryptocurrency",
"wallet",
"mnemonic",
"cryptowallet",
"bitcoin",
"btc",
"ethereum",
"eth",
"erc20",
"binance",
"binance-coin",
"binance-smart-chain",
"bsc",
"bnb",
"litecoin",
"ltc",
"bitcoin-cash",
"bch",
"polygon",
"dogecoin",
"doge",
"tron",
"trx",
"metamask",
"trust-wallet",
"tronlink",
"bip39",
"bip84",
"multiple wallets",
"crypto wallets",
"wallet generation"
],
"dependencies": {
"@binance-chain/javascript-sdk": "^4.2.0",
"@harmony-js/account": "^0.1.58",
"@yerofey/dogecoin-bip84": "^0.0.5",
"@yerofey/litecoin-bip84": "^0.0.5",
"bip39": "3.0.4",
"bip84": "0.2.7",
"chalk": "5.1.2",
"coininfo": "5.2.1",
"coinkey": "3.0.0",
"columnify": "1.6.0",
"commander": "9.4.1",
"csv-writer": "^1.6.0",
"eth-lib": "0.1.29",
"ethereum-bip84": "0.0.3",
"ethereum-mnemonic-privatekey-utils": "1.0.5",
"tezos-sign": "1.4.1",
"tronweb": "4.4.0"
},
"devDependencies": {
"ava": "^5.1.0",
"eslint": "^8.27.0"
}
}