forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 3.05 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
{
"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.15.1 @vitest/browser@4.0.9 @vitest/browser-playwright@4.0.9",
"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.0.0",
"@vitest/browser-playwright": "^4.0.0",
"@vitest/coverage-istanbul": "^4.0.0",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"cspell": "^8.17.5",
"embedme": "1.22.1",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"lint-staged": "15.5.0",
"lockfile-lint-api": "^5.9.1",
"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.26.1",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^4.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"engines": {
"node": ">=20",
"npm": ">=9"
}
}