-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.49 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@bankofai/mcp-server-tron",
"mcpName": "io.github.bankofai/mcp-server-tron",
"module": "build/index.js",
"type": "module",
"version": "1.1.7",
"description": "MCP server for TRON blockchain. Supports TRX/TRC20 transfers, smart contracts, and AI prompts.",
"bin": {
"mcp-server-tron": "./bin/cli.js"
},
"main": "build/index.js",
"files": [
"build/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start:http": "tsx src/server/http-server.ts",
"dev:http": "tsx watch src/server/http-server.ts",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release": "npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:latest": "conventional-changelog -p angular -r 1 > RELEASE_NOTES.md",
"inspect": "npx @modelcontextprotocol/inspector npx tsx src/index.ts"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.19.7",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.17"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@bankofai/agent-wallet": "^2.3.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"express": "^4.21.2",
"tronweb": "^6.1.1",
"zod": "^3.24.3"
},
"keywords": [
"mcp",
"model-context-protocol",
"tron",
"blockchain",
"trx",
"smart-contracts",
"ai",
"agent",
"trc20",
"trc721"
],
"author": "bankofai <support@bankofai.io>",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bankofai/mcp-server-tron"
},
"bugs": {
"url": "https://github.com/bankofai/mcp-server-tron/issues"
},
"homepage": "https://github.com/bankofai/mcp-server-tron#readme",
"publishConfig": {
"access": "public"
}
}