forked from shazow/whatsabi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 965 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
37
38
39
40
41
{
"name": "@shazow/whatsabi",
"version": "0.5.0",
"description": "Guess an ABI from an Ethereum contract address, even if it's unverified",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shazow/whatsabi.git"
},
"keywords": [
"ethereum",
"evm",
"abi"
],
"author": "Andrey Petrov <shazow.net>",
"license": "MIT",
"types": "./lib/index.d.ts",
"bugs": {
"url": "https://github.com/shazow/whatsabi/issues"
},
"homepage": "https://github.com/shazow/whatsabi#readme",
"dependencies": {
"@ethersproject/abi": "^5",
"@ethersproject/abstract-provider": "^5",
"@ethersproject/address": "^5",
"@ethersproject/bytes": "^5",
"@ethersproject/hash": "^5",
"@ethersproject/web": "^5"
},
"devDependencies": {
"ethers": "^5",
"ts-jest": "^29",
"ts-node": "^10.9.1"
}
}