-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.48 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.48 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@gearbox-protocol/liquidator-v2-contracts",
"description": "Complimentary contracts for gearbox liquidator",
"version": "1.0.0",
"homepage": "https://gearbox.fi",
"keywords": [
"gearbox"
],
"repository": {
"type": "git",
"url": "https://github.com/Gearbox-protocol/liquidator-v2-contracts"
},
"license": "BUSL-1.1",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
"./types": {
"import": {
"types": "./dist/esm/types/index.d.mts",
"default": "./dist/esm/types/index.mjs"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/types/index.cjs"
}
},
"./abi": {
"import": {
"types": "./dist/esm/abi/index.d.mts",
"default": "./dist/esm/abi/index.mjs"
},
"require": {
"types": "./dist/cjs/abi/index.d.ts",
"default": "./dist/cjs/abi/index.cjs"
}
},
"./bytecode": {
"import": {
"types": "./dist/esm/bytecode/index.d.mts",
"default": "./dist/esm/bytecode/index.mjs"
},
"require": {
"types": "./dist/cjs/bytecode/index.d.ts",
"default": "./dist/cjs/bytecode/index.cjs"
}
}
},
"files": [
"contracts",
"dist"
],
"scripts": {
"clean": "forge clean && rm -rf types ./dist ./src/types/generated ./src/**/*.generated.ts",
"build": "forge build && yarn types && yarn abis && yarn bytecode && tsup",
"types": "typechain --target ethers-v6 --out-dir ./src/types/generated ./forge-out/*.sol/*.json",
"forge-build": "forge clean && forge build",
"abis": "wagmi generate",
"bytecode": "node ./generate-bytecode.mjs",
"prepare": "husky",
"prettier": "forge fmt",
"prettier:ci": "forge fmt"
},
"devDependencies": {
"@1inch/solidity-utils": "^2.4.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@gearbox-protocol/bots-v3": "^1.5.1",
"@gearbox-protocol/core-v2": "1.19.0-base.17",
"@gearbox-protocol/core-v3": "^1.49.7",
"@gearbox-protocol/sdk-gov": "^2.2.5",
"@openzeppelin/contracts": "^4.9.6",
"@typechain/ethers-v6": "^0.5.1",
"@wagmi/cli": "^2.1.9",
"ethers": "^6.12.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"tsup": "^8.0.2",
"typechain": "^8.1.0",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.sol": "forge fmt"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}