-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "evm-hack-analyzer",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Standalone, static, in-browser EVM exploit debugger. Generate a source-level opcode replay of any transaction, annotate the vulnerability + exploit steps, and share it via ZIP or IPFS. No backend.",
"scripts": {
"dev": "vite",
"build": "tsc -b --noCheck && vite build",
"preview": "vite preview --port 4180 --strictPort",
"test:balances": "tsx scripts/test-balances.mjs"
},
"dependencies": {
"@ethereumjs/block": "^10.1.2",
"@ethereumjs/common": "^10.1.2",
"@ethereumjs/evm": "^10.1.2",
"@ethereumjs/statemanager": "^10.1.2",
"@ethereumjs/util": "^10.1.2",
"@ethereumjs/vm": "^10.1.2",
"highlight.js": "^11.11.1",
"highlightjs-solidity": "^2.0.6",
"jszip": "^3.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"viem": "^2.46.1"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"tsx": "^4.23.1",
"typescript": "^5.7.3",
"vite": "^6.0.7"
}
}