forked from bgd-labs/aave-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "@marsfoundation/aave-cli",
"version": "0.0.24",
"description": "A cli to perform various aave governance related tasks",
"private": false,
"scripts": {
"start": "tsx src/cli.ts",
"build": "tsup",
"test": "vitest",
"ci:publish": "npm run build && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marsfoundation/aave-cli.git"
},
"author": "BGD labs",
"license": "MIT",
"devDependencies": {
"@types/node-fetch": "^2.6.4",
"@types/object-hash": "^3.0.3",
"@types/yargs": "^17.0.24",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"type": "module",
"main": "./dist/index.cjs",
"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/AaveAddressBook.d.cts",
"default": "./dist/index.cjs"
}
},
"bin": {
"aave-cli": "dist/cli.cjs"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bgd-labs/aave-address-book": "^1.33.0",
"bs58": "^5.0.0",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"gray-matter": "^4.0.3",
"ipfs-only-hash": "^4.0.0",
"json-bigint": "^1.0.0",
"node-fetch": "^2.6.9",
"object-hash": "^3.0.0",
"viem": "^1.6.2",
"yargs": "^17.7.2",
"zod": "^3.21.4"
}
}