generated from bgd-labs/bgd-forge-template
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "aave-proposals-v3",
"version": "1.0.0",
"scripts": {
"test": "vitest generator",
"lint": "prettier . --check",
"lint:fix": "prettier . --write",
"generate": "tsx generator/cli",
"generate:bgd": "tsx generator/cli -a 'BGD Labs @bgdlabs'",
"prepare": "husky install"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-proposals-v3.git"
},
"keywords": [],
"author": "BGD labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgd-labs/aave-proposals-v3/issues"
},
"homepage": "https://github.com/bgd-labs/aave-proposals-v3#readme",
"devDependencies": {
"@types/node": "^22.9.0",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"vitest": "^2.1.5"
},
"dependencies": {
"@bgd-labs/aave-address-book": "4.6.0",
"@bgd-labs/aave-cli": "^1.1.12",
"@bgd-labs/js-utils": "^1.4.6",
"@inquirer/prompts": "^7.1.0",
"@inquirer/testing": "^2.1.37",
"catapulta-verify": "^1.2.1",
"commander": "^12.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"tsx": "^4.19.2",
"viem": "^2.18.6"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}