-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
79
80
{
"name": "@bgd-labs/aave-governance-ui-helpers",
"description": "This repository saves and updates the cache for Aave governance v3, also includes helper functions connected to Aave governance UI version 3.",
"version": "3.4.0",
"author": "BGD labs",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Oleksandr Tkach",
"url": "https://github.com/Argeare5"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-governance-ui-helpers.git"
},
"bugs": {
"url": "https://github.com/bgd-labs/aave-governance-ui-helpers/issues"
},
"homepage": "https://github.com/bgd-labs/aave-governance-ui-helpers#readme",
"scripts": {
"start": "tsup src/index.ts --watch",
"build": "tsup",
"cache:update": "VERBOSE=true tsx src/scripts/update-cache.ts",
"cache:parse": "VERBOSE=true tsx src/scripts/parse-cache.ts",
"ci:publish": "npm run build && npm publish --access=public",
"ci:publish:beta": "npm run build && npm publish --tag beta --access=public"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@bgd-labs/aave-address-book": "^4",
"ethers": "^5",
"viem": "^2"
},
"devDependencies": {
"@bgd-labs/aave-address-book": "^4.12.0",
"@bgd-labs/js-utils": "^1.4.7",
"@bgd-labs/rpc-env": "^2.3.1",
"@types/lodash": "^4.17.15",
"@types/node": "^22.12.0",
"bignumber.js": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ethers": "5",
"globals": "^15.14.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"viem": "^2.23.2"
},
"dependencies": {
"abitype": "^1.0.8",
"bs58": "^6.0.0",
"dayjs": "^1.11.13",
"gray-matter": "^4.0.3"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}