forked from ethereum-optimism/ethereum-optimism.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@eth-optimism/tokenlist",
"description": "[Optimism] token list",
"version": "10.0.146",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"homepage": "https://github.com/ethereum-optimism/ethereum-optimism.github.io#readme",
"license": "MIT",
"author": "Optimism",
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-optimism/ethereum-optimism.github.io.git"
},
"tsup": {
"entry": [
"index.ts",
"optimism.tokenlist.json"
],
"outDir": "dist",
"format": [
"esm",
"cjs"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"validate": "tsx ./bin/cli.ts validate",
"generate": "tsx ./bin/cli.ts generate",
"generate:ci": "pnpm generate --datadir ./data --outfile optimism.tokenlist.json",
"build": "tsup",
"build:ci": "pnpm generate:ci && pnpm tsup --dts",
"release": "pnpm build:ci && npm publish",
"test": "jest --detectOpenHandles",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "eslint --fix .",
"lint": "pnpm lint:fix && pnpm lint:check",
"start-bot": "tsx ./src/bot.ts",
"typecheck": "tsc -p ./tsconfig.json --noEmit"
},
"files": [
"dist"
],
"devDependencies": {
"@actions/core": "^1.4.0",
"@babel/eslint-parser": "^7.18.2",
"@eth-optimism/common-ts": "^0.6.5",
"@eth-optimism/contracts": "^0.5.40",
"@eth-optimism/core-utils": "^0.9.3",
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.3",
"@types/node": "^12.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@uniswap/token-lists": "^1.0.0-beta.32",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"commander": "^9.4.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^42.0.0",
"ethers": "^5.4.1",
"extract-zip": "^2.0.1",
"glob": "^8.0.3",
"jest": "^28.1.3",
"jsonschema": "^1.4.1",
"mocha": "^8.4.0",
"node-fetch": "2.6.7",
"octokit": "^2.0.7",
"prettier": "^2.3.1",
"ts-jest": "^29.0.1",
"ts-mocha": "^10.0.0",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^4.6.2",
"uuid": "^9.0.0"
}
}