-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.77 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
{
"name": "netrum-cli-v2",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"bin": {
"netrum": "./cli/netrum-cli.js",
"netrum-update": "./cli/cli.js",
"netrum-system": "./cli/system-cli.js",
"netrum-system-log": "./cli/system-log-cli.js",
"netrum-new-wallet": "./cli/new-wallet-cli.js",
"netrum-import-wallet": "./cli/import-wallet-cli.js",
"netrum-wallet": "./cli/wallet-cli.js",
"netrum-wallet-key": "./cli/wallet-key-cli.js",
"netrum-wallet-remove": "./cli/wallet-remove-cli.js",
"netrum-check-basename": "./cli/check-basename-cli.js",
"netrum-node-id": "./cli/node-id-cli.js",
"netrum-node-id-remove": "./cli/node-id-remove-cli.js",
"netrum-node-sign": "./cli/signMsg-cli.js",
"netrum-node-register": "./cli/register-cli.js",
"netrum-task-allow": "./cli/task-allow.js",
"netrum-task": "./cli/task-cli.js",
"netrum-task-log": "./cli/task-log-cli.js",
"netrum-sync": "./cli/sync-cli.js",
"netrum-sync-log": "./cli/sync-log-cli.js",
"netrum-mining": "./cli/mining-cli.js",
"netrum-mining-log": "./cli/mining-log-cli.js",
"netrum-claim": "./cli/claim-cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["netrum", "node", "mining", "cli", "blockchain", "crypto", "base"],
"author": "netrum_team",
"license": "ISC",
"description": "Netrum Node CLI tool for mining, registration, and blockchain interaction.",
"dependencies": {
"axios": "^1.10.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"diskusage": "^1.2.0",
"ethers": "^6.14.4",
"figlet": "^1.8.1",
"gradient-string": "^3.0.0",
"log-update": "^6.1.0",
"node-fetch": "^3.3.2",
"ora": "^8.2.0",
"readline-sync": "^1.4.10"
}
}