-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 877 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "contracts-js",
"version": "2.0.7",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate": "rm -rf ./src/generated-types && mkdir -p ./src/generated-types && abi-types-generator './src/abi/CloneFactory.json' --output='./src/generated-types' && abi-types-generator './src/abi/Lumerin.json' --output='./src/generated-types' && abi-types-generator './src/abi/Implementation.json' --output='./src/generated-types' && abi-types-generator './src/abi/Faucet.json' --output='./src/generated-types' && abi-types-generator './src/abi/ValidatorRegistry.json' --output='./src/generated-types' && abi-types-generator './src/abi/IERC20.json' --output='./src/generated-types'",
"build": "rm -rf ./dist && tsc"
},
"dependencies": {
"ethereum-abi-types-generator": "^1.3.4"
},
"devDependencies": {
"typescript": "^5.3.3"
}
}