-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@bankofai/sun-cli",
"version": "1.0.3",
"description": "CLI tool for SUN.IO / SUNSWAP on TRON — for humans and AI agents",
"main": "dist/bin.js",
"type": "commonjs",
"bin": {
"sun": "./bin/sun"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/bin.ts",
"start": "node dist/bin.js",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run clean && npm run build",
"publish:beta": "npm publish --tag beta --access public",
"publish:latest": "npm publish --access public"
},
"files": [
"dist/**/*",
"bin",
"SKILL.md",
"README.md",
"LICENSE"
],
"keywords": [
"tron",
"sunswap",
"sun.io",
"defi",
"cli",
"ai-agent"
],
"license": "MIT",
"overrides": {
"utf-8-validate": "5.0.10"
},
"dependencies": {
"@bankofai/agent-wallet": "^2.3.0",
"@bankofai/sun-kit": "^1.1.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ora": "^5.4.1",
"tronweb": "^6.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1"
}
}