forked from bgd-labs/aave-address-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "@bgd-labs/aave-address-book",
"version": "2.19.0",
"description": "This repository contains an up-to-date registry of all addresses of the Aave ecosystem's smart contracts, for its usage in Solidity codebases.",
"private": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/AaveAddressBook.js",
"module": "./dist/AaveAddressBook.mjs",
"types": "./dist/AaveAddressBook.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/AaveAddressBook.d.ts",
"default": "./dist/AaveAddressBook.js"
},
"import": {
"types": "./dist/AaveAddressBook.mts",
"default": "./dist/AaveAddressBook.mjs"
},
"types": "./dist/AaveAddressBook.d.ts",
"default": "./dist/AaveAddressBook.js"
}
},
"sideEffects": false,
"scripts": {
"prettier": "prettier --write 'src/**/*.{sol,ts}'",
"generate:abis": "tsx scripts/generateABIs.ts && npm run prettier",
"generate:addresses": "tsx scripts/generateAddresses.ts && npm run prettier",
"start": "tsx scripts/generateABIs.ts &&tsx scripts/generateAddresses.ts && npm run prettier",
"build": "tsup",
"ci:publish": "npm run build && npm publish --access=public",
"test": "echo 'no tests exist yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-address-book.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgd-labs/aave-address-book/issues"
},
"homepage": "https://github.com/bgd-labs/aave-address-book#readme",
"devDependencies": {
"@bgd-labs/js-utils": "^1.1.1",
"@types/node": "^20.10.5",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"viem": "^2.5.0"
}
}