-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.01 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.01 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
{
"name": "@aave/aave-vault",
"license": "All Rights Reserved © AaveCo",
"version": "1.0.0",
"author": "AaveCo",
"description": "ERC-4626 vault for depositing & withdrawing into Aave V3",
"files": [
"contracts"
],
"repository": {
"type": "git",
"url": "https://github.com/aave/wrapped-atoken-vault"
},
"devDependencies": {
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13"
},
"contributors": [
"Miguel Martinez <miguel@aave.com>",
"Peter Michael <peter.dev@aave.com>",
"Mark Hinschberger <mark@aave.com>"
],
"scripts": {
"lint": "prettier --write **.sol",
"rs:bind": "forge bind --bindings-path ./out/__BINDINGS__ --alloy --skip 'test/**/*.sol'",
"rs:abis": "forge build --out ./out/__FOLDER_ABIS__ --skip 'test/**/*.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"
}
}