@yerofey/cryptowallet-cli 1.24.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -5
- package/src/options.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yerofey/cryptowallet-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "Crypto wallet generator CLI tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/yerofey/cryptowallet-cli",
|
|
@@ -49,7 +49,8 @@
|
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"lint": "pnpm exec eslint src/*.js",
|
|
52
|
-
"test": "ava"
|
|
52
|
+
"test": "ava",
|
|
53
|
+
"update": "ncu -u && pnpm install"
|
|
53
54
|
},
|
|
54
55
|
"files": [
|
|
55
56
|
"cli.js",
|
|
@@ -118,7 +119,7 @@
|
|
|
118
119
|
"coininfo": "5.2.1",
|
|
119
120
|
"coinkey": "3.0.0",
|
|
120
121
|
"columnify": "1.6.0",
|
|
121
|
-
"commander": "
|
|
122
|
+
"commander": "12.0.0",
|
|
122
123
|
"csv-writer": "^1.6.0",
|
|
123
124
|
"dotenv": "^16.4.1",
|
|
124
125
|
"ed25519-hd-key": "^1.3.0",
|
|
@@ -130,7 +131,8 @@
|
|
|
130
131
|
"tronweb": "5.3.1"
|
|
131
132
|
},
|
|
132
133
|
"devDependencies": {
|
|
133
|
-
"ava": "^
|
|
134
|
-
"eslint": "^8.
|
|
134
|
+
"ava": "^6.1.1",
|
|
135
|
+
"eslint": "^8.56.0",
|
|
136
|
+
"npm-check-updates": "^16.14.14"
|
|
135
137
|
}
|
|
136
138
|
}
|
package/src/options.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { program } from 'commander';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
program.option('-b, --chain <ticker>', 'Wallet for specific blockchain', 'EVM');
|
|
3
|
+
program.option('-b <ticker>', 'Wallet for specific blockchain', 'EVM');
|
|
5
4
|
program.option('-c, --chain <ticker>', 'Wallet for specific blockchain', 'EVM');
|
|
6
5
|
program.option('-C, --copy', 'Copy the result to the clipboard');
|
|
7
6
|
program.option(
|