-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "@1hive/default-token-list",
"version": "6.1.6",
"description": "◦ The Honeyswap default token list",
"exports": "./build/index.json",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"fetch-missing": "node src/fetchMissing.js",
"fix-lists": "node src/fixLists.js",
"test": "mocha --exit",
"build": "mkdir -p build && node src/write.js > build/index.json",
"prepublishOnly": "pnpm test && pnpm run build"
},
"files": [
"build/index.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/1Hive/default-token-list.git"
},
"keywords": [
"honeyswap",
"default",
"token",
"list"
],
"author": "Moody Salem",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/1Hive/default-token-list.git/issues"
},
"homepage": "https://github.com/1Hive/default-token-list.git#readme",
"devDependencies": {
"@ethersproject/address": "^5.7.0",
"ajv": "^6.12.6",
"axios": "^1.6.8",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"node-fetch": "^2.7.0",
"rimraf": "^4.4.1",
"web3-utils": "^1.10.4"
},
"dependencies": {
"@wagmi/core": "^1.4.13",
"jsonpath": "^1.1.1",
"viem": "^1.21.4"
}
}