-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "tx-debugger-cli",
"version": "1.5.1",
"description": "A powerful CLI tool to debug EVM transactions, decode traces, and get AI-powered summaries",
"main": "dist/index.js",
"bin": {
"tx-debugger-cli": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ethereum",
"evm",
"transaction",
"debug",
"trace",
"blockchain",
"ai",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VGabriel45/tx_debugger_cli"
},
"bugs": {
"url": "https://github.com/VGabriel45/tx_debugger_cli/issues"
},
"homepage": "https://github.com/VGabriel45/tx_debugger_cli/blob/main/README.md",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@google/genai": "^1.21.0",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"dotenv": "^17.2.2",
"ethers": "^6.15.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}