-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "@arianee/arianee-abi",
"version": "0.33.0",
"description": "abi definition of Arianee and typescript declaration files",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Arianee/arianee-abi"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate": "./node_modules/.bin/typechain --target=web3-v1.2.2/dist './abi/json/**/*.json' --outDir=./types",
"generateJS": "",
"generateEthers6": "npm run _generateEthers6_v1 && npm run _generateEthers6_v1_1",
"_generateEthers6_v1": "typechain --target ethers-v6 --out-dir ./ethers6/v1 './abi/json/V1/*.json'",
"_generateEthers6_v1_1": "typechain --target ethers-v6 --out-dir ./ethers6/v1_1 './abi/json/V2/*.json'",
"minify": "node ./minify.js",
"build": "npm run generate && npm run minify",
"prepublish": "tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typechain/ethers-v6": "^0.4.0",
"typechain": "8.2.0",
"web3": "4.10.0"
},
"peerDependencies": {
"ethers": "^6.6.0"
},
"dependencies": {
"bn": "1.0.5",
"lodash": "4.17.21",
"ts-generator": "^0.1.1",
"typescript": "^5.1.3"
}
}