-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 974 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 974 Bytes
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
{
"name": "@logrus/tron-cli",
"version": "1.1.2",
"description": "Simple interactive CLI for basic USDT-TRC20 transactions.",
"repository": {
"type": "git",
"url": "https://github.com/logrus-dev/tron-cli.git"
},
"keywords": [
"TRON",
"Cryptocurrency",
"USDT",
"CLI",
"npx"
],
"main": "dist/index.js",
"bin": {
"tron-cli": "dist/index.js"
},
"files": [
"dist/**/*",
"Readme.md"
],
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/index.js",
"prepare": "tsc"
},
"author": "logrus.dev",
"license": "GPL-3.0-only",
"dependencies": {
"convict": "^6.2.4",
"inquirer": "^8.2.5",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"tronweb": "^6.0.1"
},
"bundleDependencies": true,
"devDependencies": {
"@types/convict": "^6.1.1",
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"typescript": "^4.9.5"
}
}