-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 753 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 753 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
{
"name": "multicall-decoder",
"version": "1.0.0",
"description": "A CLI tool to decode multicall transaction data using 4byte directory and Etherscan API",
"main": "dist/index.js",
"bin": {
"multicall-decoder": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"test": "vitest"
},
"keywords": ["multicall", "decoder", "ethereum", "cli"],
"author": "",
"license": "MIT",
"dependencies": {
"viem": "^2.21.54",
"commander": "^12.0.0",
"axios": "^1.7.2",
"chalk": "^4.1.2",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
}
}