-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "@bgd-labs/aave-v3-governance-cache",
"version": "1.0.8",
"sideEffects": false,
"files": [
"cache",
"dist"
],
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./customStorageProvider": {
"types": "./dist/customStorageProvider.d.ts",
"default": "./dist/providers/customStorageProvider.js"
},
"./fileSystemStorageAdapter": {
"types": "./dist/fileSystem.d.ts",
"default": "./dist/providers/storage/fileSystem.js"
},
"./githubPagesProvider": {
"types": "./dist/githubPagesProvider.d.ts",
"default": "./dist/providers/githubPagesProvider.js"
},
"./fallbackProvider": {
"types": "./dist/fallbackProvider.d.ts",
"default": "./dist/providers/fallbackProvider.js"
},
"./rpcProvider": {
"types": "./dist/rpcProvider.d.ts",
"default": "./dist/providers/rpcProvider.js"
},
"./refreshCache": {
"types": "./dist/refreshCache.d.ts",
"default": "./dist/common/refreshCache.js"
}
},
"scripts": {
"build": "bun run scripts/build.ts",
"cache": "bun ./scripts/refreshCache.ts",
"ci:publish": "npm run build && npm publish --access=public"
},
"devDependencies": {
"@bgd-labs/aave-address-book": "^4.0.1-02c70ec5f8a433b38372b81d27ed44b79aa52f65.0",
"@bgd-labs/js-utils": "^1.4.2",
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.3",
"prettier": "^3.2.5",
"typescript": "^5.0.0",
"viem": "^2.9.20"
},
"peerDependencies": {
"viem": "^2.9.20",
"@bgd-labs/aave-address-book": "^4.0.1-02c70ec5f8a433b38372b81d27ed44b79aa52f65.0"
}
}