@eth-optimism/tokenlist 10.0.1757 → 10.0.1759
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{optimism.tokenlist-45aa3b24.d.ts → optimism.tokenlist-5d0b9b3e.d.ts} +2 -2
- package/dist/optimism.tokenlist.d.ts +1 -1
- package/dist/optimism.tokenlist.js +2 -2
- package/dist/optimism.tokenlist.js.map +1 -1
- package/dist/optimism.tokenlist.mjs +2 -2
- package/dist/optimism.tokenlist.mjs.map +1 -1
- package/package.json +19 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eth-optimism/tokenlist",
|
|
3
3
|
"description": "[Optimism] token list",
|
|
4
|
-
"version": "10.0.
|
|
4
|
+
"version": "10.0.1759",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"exports": {
|
|
@@ -33,6 +33,20 @@
|
|
|
33
33
|
"sourcemap": true,
|
|
34
34
|
"clean": true
|
|
35
35
|
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"validate": "tsx ./bin/cli.ts validate",
|
|
38
|
+
"generate": "tsx ./bin/cli.ts generate",
|
|
39
|
+
"generate:ci": "pnpm generate --datadir ./data --outfile optimism.tokenlist.json",
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"build:ci": "pnpm generate:ci && pnpm tsup --dts",
|
|
42
|
+
"release": "pnpm build:ci && npm publish",
|
|
43
|
+
"test": "jest --detectOpenHandles",
|
|
44
|
+
"lint:check": "eslint . --max-warnings=0",
|
|
45
|
+
"lint:fix": "eslint --fix .",
|
|
46
|
+
"lint": "pnpm lint:fix && pnpm lint:check",
|
|
47
|
+
"start-bot": "tsx ./src/bot.ts",
|
|
48
|
+
"typecheck": "tsc -p ./tsconfig.json --noEmit"
|
|
49
|
+
},
|
|
36
50
|
"files": [
|
|
37
51
|
"dist"
|
|
38
52
|
],
|
|
@@ -44,7 +58,7 @@
|
|
|
44
58
|
"@eth-optimism/core-utils": "^0.9.3",
|
|
45
59
|
"@types/glob": "^8.0.0",
|
|
46
60
|
"@types/jest": "^29.0.3",
|
|
47
|
-
"@types/node": "
|
|
61
|
+
"@types/node": "22.14.0",
|
|
48
62
|
"@types/uuid": "^8.3.4",
|
|
49
63
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
50
64
|
"@typescript-eslint/parser": "^4.26.0",
|
|
@@ -80,18 +94,7 @@
|
|
|
80
94
|
"uuid": "^9.0.0"
|
|
81
95
|
},
|
|
82
96
|
"packageManager": "pnpm@8.6.0",
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"generate": "tsx ./bin/cli.ts generate",
|
|
86
|
-
"generate:ci": "pnpm generate --datadir ./data --outfile optimism.tokenlist.json",
|
|
87
|
-
"build": "tsup",
|
|
88
|
-
"build:ci": "pnpm generate:ci && pnpm tsup --dts",
|
|
89
|
-
"release": "pnpm build:ci && npm publish",
|
|
90
|
-
"test": "jest --detectOpenHandles",
|
|
91
|
-
"lint:check": "eslint . --max-warnings=0",
|
|
92
|
-
"lint:fix": "eslint --fix .",
|
|
93
|
-
"lint": "pnpm lint:fix && pnpm lint:check",
|
|
94
|
-
"start-bot": "tsx ./src/bot.ts",
|
|
95
|
-
"typecheck": "tsc -p ./tsconfig.json --noEmit"
|
|
97
|
+
"engines": {
|
|
98
|
+
"node": "^22.0.0"
|
|
96
99
|
}
|
|
97
|
-
}
|
|
100
|
+
}
|