-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
67 lines (67 loc) · 1.67 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@shazow/whatsabi",
"version": "0.15.4",
"description": "Resolve proxies and get an ABI from Ethereum bytecode, even if it's unverified",
"type": "module",
"scripts": {
"test": "vitest run",
"build:cjs": "tsc --project tsconfig.cjs.json && cp package.cjs.json lib.cjs/package.json",
"build:esm": "tsc --project tsconfig.esm.json && cp package.esm.json lib.esm/package.json",
"build:types": "tsc --project tsconfig.types.json",
"build:docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shazow/whatsabi.git"
},
"keywords": [
"ethereum",
"evm",
"abi"
],
"author": "Andrey Petrov <shazow.net>",
"license": "MIT",
"files": [
"lib.esm/",
"lib.cjs/",
"lib.types/",
"src/",
"examples/",
"package.json",
"README.md",
"LICENSE",
"*config.*"
],
"bugs": {
"url": "https://github.com/shazow/whatsabi/issues"
},
"homepage": "https://github.com/shazow/whatsabi#readme",
"dependencies": {
"ethers": "^6.13.4"
},
"peerDependencies": {
"@noble/hashes": "^1"
},
"devDependencies": {
"@size-limit/esbuild-why": "^8.2.6",
"@size-limit/preset-small-lib": "^8.2.6",
"npm": "^10.9.0",
"size-limit": "^8.2.6",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"viem": "^2.21.32",
"vitest": "^0.34.6",
"web3": "^4.13.0"
},
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
"types": "./lib.types/index.d.ts",
"exports": {
".": {
"types": "./lib.types/index.d.ts",
"import": "./lib.esm/index.js",
"default": "./lib.cjs/index.js"
}
}
}