forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "root",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"biome": "npx @biomejs/biome check",
"biome:fix": "npx @biomejs/biome check --write",
"checkNpmVersion": "./scripts/check-npm-version.sh",
"clean": "./config/cli/clean-root.sh",
"docs:build": "npm run docs:build --workspaces --if-present",
"e2e:inject": "node ./scripts/e2e-inject-resolutions.js",
"e2e:publish": "./scripts/e2e-publish.sh",
"e2e:resolutions": "node ./scripts/e2e-resolutions.js",
"examples": "npm run examples --workspaces --if-present",
"examples:build": "npm run examples:build --workspaces --if-present",
"install-browser-deps": "npm install playwright@1.60.0 @vitest/browser@4.1.8 @vitest/browser-playwright@4.1.8",
"lint": "npm run biome && eslint --config ./eslint.config.mjs .",
"lint:fix": "npm run biome:fix && eslint --fix --config ./eslint.config.mjs .",
"lint:diff": "./config/cli/lint-diff.sh",
"test": "npm run test --workspaces --if-present",
"test:node": "npm run test:node --workspaces --if-present",
"test:browser": "npm run test:browser --workspaces --if-present",
"preinstall": "npm run checkNpmVersion",
"postinstall": "npm run build --workspaces --if-present",
"prepare": "git config --local core.hooksPath .githooks",
"release:simple": "tsx ./scripts/simple-release.ts",
"sc": "npm run spellcheck",
"sort-package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"spellcheck": "npm run spellcheck:ts && npm run spellcheck:md",
"spellcheck:ts": "npx cspell --gitignore -e \"./packages/ethereum-tests\" -e \"./packages/wallet/test\" -e \"./packages/client/archive\" -c ./config/cspell-ts.json \"./packages/**/*.ts\" --cache --show-suggestions --show-context",
"spellcheck:md": "npx cspell --gitignore -e \"./packages/ethereum-tests\" -e \"./packages/client/withdrawals-testnet/**\" -e \"./packages/**/docs\" -c ./config/cspell-md.json \"**.md\" --cache --show-suggestions --show-context",
"tsc": "npm run tsc --workspaces --if-present"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "9.22.0",
"@types/estree": "1.0.1",
"@types/node": "22.13.10",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"@vitest/browser": "4.1.8",
"@vitest/browser-playwright": "4.1.8",
"@vitest/coverage-istanbul": "4.1.8",
"@vitest/coverage-v8": "4.1.8",
"@vitest/ui": "4.1.8",
"cspell": "8.17.5",
"embedme": "1.22.1",
"eslint": "9.39.4",
"eslint-plugin-import": "2.31.0",
"lint-staged": "15.5.0",
"lockfile-lint-api": "5.9.2",
"sort-package-json": "3.0.0",
"tsx": "4.19.3",
"typedoc": "0.28.3",
"typedoc-plugin-markdown": "4.6.3",
"typescript": "5.8.2",
"typescript-eslint": "8.59.0",
"vite-plugin-top-level-await": "1.2.2",
"vite-plugin-wasm": "3.4.1",
"vitest": "4.1.8"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"overrides": {
"axios": "1.16.1",
"ws": "8.20.1",
"tmp": "0.2.7"
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"license": "MPL-2.0"
}