-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "@hai-on-op/sdk",
"version": "1.2.22",
"description": "Javascript client for HAI",
"license": "MIT",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"prebuild": "yarn --cwd ./solidity install && yarn --cwd ./solidity compile",
"build": "sh ./group-abis.sh && yarn generate-types && tsc",
"generate-types": "typechain --target ethers-v5 --out-dir src/typechained --glob ./tmp/abis/**/*.json",
"lint:check": "prettier --check .",
"lint:fix": "sort-package-json && prettier --write .",
"prepare": "husky install",
"test": "echo \"No tests yet\""
},
"lint-staged": {
"package.json": "sort-package-json",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@hai-on-op/abis": "1.0.7",
"ethers": "5.4.7"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@typechain/ethers-v5": "^11.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"sort-package-json": "2.4.1",
"typechain": "8.2.0",
"typescript": "5.0.4"
}
}