-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 860 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": "erc-abis-ts",
"version": "0.1.1",
"description": "Human-Readable ABI definitions for common ERCs",
"author": "James McComish",
"license": "MIT",
"homepage": "https://github.com/jamesmccomish/erc-abis",
"repository": "https://github.com/jamesmccomish/erc-abis",
"keywords": [
"eth",
"ethereum",
"eip",
"erc",
"abi",
"web3",
"typescript",
"viem",
"ethers"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["./dist"],
"sideEffects": false,
"scripts": {
"build": "bun run tsc",
"clean": "bun run rm -rf dist",
"prepare": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/bun": "latest",
"abitype": "^1.0.6",
"viem": "^2.21.37",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}