forked from subsquid/squid-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 935 Bytes
/
package.json
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": "@subsquid/evm-typegen",
"version": "2.1.1",
"description": "CLI for generating typescript types and decode implementations for evm logs",
"license": "GPL-3.0-or-later",
"repository": "[email protected]:subsquid/squid.git",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"bin": {
"squid-evm-typegen": "bin/run.js"
},
"scripts": {
"build": "rm -rf lib && tsc"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@subsquid/logger": "^0.3.1",
"@subsquid/util-internal": "^1.1.0",
"@subsquid/util-internal-code-printer": "^0.1.1",
"@subsquid/util-internal-commander": "^0.0.2",
"@subsquid/util-internal-http-client": "^0.1.0",
"commander": "^10.0.0"
},
"devDependencies": {
"@types/node": "^16.18.12",
"ethers": "^5.7.2",
"typescript": "~4.9.5"
}
}