-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 988 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 988 Bytes
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
{
"name": "aave-v4",
"version": "0.5.11",
"scripts": {
"lint": "prettier . --check",
"lint:fix": "prettier . --write",
"rs:bind": "forge bind --bindings-path ./out/__BINDINGS__ --alloy --skip '(tests|scripts)/**/*.sol'",
"rs:abis": "forge build --out ./out/__FOLDER_ABIS__ --skip '(tests|scripts)/**/*.sol' --extra-output-files abi && rm -rf ./out/__ABIS__ && mkdir -p ./out/__ABIS__ && find ./out/__FOLDER_ABIS__ -name '*.abi.json' -exec cp {} ./out/__ABIS__/ \\;",
"rs:generate": "npm run rs:bind && npm run rs:abis",
"prepare": "husky"
},
"keywords": [],
"author": "Aave Labs",
"license": "LicenseRef-BUSL",
"bugs": {
"url": "https://github.com/aave/aave-v4/issues"
},
"homepage": "https://github.com/aave/aave-v4#readme",
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "16.2.3",
"prettier": "3.7.4",
"prettier-plugin-solidity": "2.2.1"
},
"lint-staged": {
"*.{sol,md,py,ts}": "prettier . --write"
}
}