forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "optimism-docs",
"version": "1.0.0",
"description": "Optimism Documentation",
"main": "index.js",
"scripts": {
"prebuild": "tsx scripts/generate-actions-components.ts && tsx scripts/generate-releases.ts",
"prebuild:local": "tsx scripts/generate-actions-components.ts --local && tsx scripts/generate-releases.ts",
"dev": "mint dev",
"lint:nav": "tsx scripts/lint/validate-nav.ts",
"lint:redirects": "tsx scripts/lint/validate-redirects.ts",
"gen:hardforks": "tsx scripts/generate-hardforks.ts",
"gen:hardforks:check": "tsx scripts/generate-hardforks.ts --check"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@eth-optimism/actions-sdk": "^0.4.0",
"@types/node": "^25.9.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"ts-morph": "^21.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@reown/appkit",
"bigint-buffer",
"bufferutil",
"esbuild",
"sharp",
"utf-8-validate"
],
"overrides": {
"@metamask/sdk": ">=0.33.1",
"@metamask/sdk-communication-layer": ">=0.33.1",
"axios": ">=1.16.0",
"defu": ">=6.1.5",
"follow-redirects": ">=1.16.0",
"form-data": ">=4.0.6",
"h3": ">=1.15.9",
"js-cookie": ">=3.0.7",
"minimatch": ">=9.0.7",
"postcss": ">=8.5.10",
"preact": ">=10.28.2",
"uuid": ">=11.1.1",
"ws": ">=8.21.0"
}
}
}