-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.94 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
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
{
"name": "@bgd-labs/aave-cli",
"version": "1.1.10",
"description": "A cli to perform various aave governance related tasks",
"private": false,
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "bun src/cli.ts",
"build": "tsup",
"test": "vitest",
"lint:fix": "bunx prettier . --write",
"lint": "bunx prettier . --check",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/report-engine.git"
},
"author": "BGD labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgd-labs/report-engine/issues"
},
"homepage": "https://github.com/bgd-labs/report-engine#readme",
"devDependencies": {
"@types/object-hash": "^3.0.6",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.4.1",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^2.1.3"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"bin": {
"aave-cli": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bgd-labs/aave-address-book": "^4.2.0",
"@bgd-labs/aave-v3-governance-cache": "^1.0.8",
"@bgd-labs/js-utils": "^1.4.2",
"@commander-js/extra-typings": "^11.1.0",
"@inquirer/prompts": "^3.3.2",
"blockstore-core": "^5.0.2",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.1",
"find-object-paths": "^1.1.0",
"gray-matter": "^4.0.3",
"ipfs-unixfs-importer": "^15.3.1",
"json-bigint": "^1.0.0",
"viem": "^2.21.32",
"zod": "^3.23.8"
}
}