forked from bgd-labs/aave-address-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.21 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
{
"name": "@bgd-labs/aave-address-book",
"version": "3.2.1",
"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",
"tokenlist.json"
],
"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:safe": "tsx scripts/generateSafeCSV.ts",
"generate:addresses": "tsx scripts/generateAddresses.ts && npm run generate:safe && 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": "npm run generate:addresses"
},
"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.4.2",
"@bgd-labs/react-web3-icons": "^1.4.4",
"@types/node": "^22.4.1",
"@uniswap/token-lists": "^1.0.0-beta.33",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"dotenv": "^16.4.1",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"viem": "^2.8.5"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}