-
Notifications
You must be signed in to change notification settings - Fork 759
/
package.json
88 lines (88 loc) · 3.32 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
{
"name": "root",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"biome": "npx @biomejs/biome check --write",
"checkNpmVersion": "./scripts/check-npm-version.sh",
"clean": "./config/cli/clean-root.sh",
"cspell": "npm run cspell:ts && npm run cspell:md",
"cspell: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",
"cspell: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",
"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",
"lint": "eslint --format codeframe --config ./config/eslint.cjs . --ext .js,.ts",
"lint:fix": "eslint --fix --config ./config/eslint.cjs . --ext .js,.ts",
"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",
"prepare": "git config --local core.hooksPath .githooks",
"sort-package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"install-browser-deps": "npm install webdriverio@9.2.6 @vitest/browser@2.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/estree": "^1.0.1",
"@types/node": "18.11.9",
"@types/tape": "4.13.2",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@vitest/coverage-v8": "2.1.0",
"@vitest/ui": "2.1.0",
"c8": "7.12.0",
"cspell": "^8.13.3",
"embedme": "1.22.1",
"eslint": "8.57.0",
"eslint-config-typestrict": "^1.0.5",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-ethereumjs": "file:./eslint",
"eslint-plugin-github": "4.9.2",
"eslint-plugin-implicit-dependencies": "1.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sonarjs": "0.19.0",
"lint-staged": "13.0.3",
"lockfile-lint-api": "^5.5.1",
"sort-package-json": "1.57.0",
"tape": "5.6.0",
"tsx": "^4.6.2",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "5.0.4",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vitest": "2.1.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"peerDependencies": {
"@vitest/browser": "^2.1.0",
"webdriverio": "^9.2.6"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"webdriverio": {
"optional": true
},
"@vitest/browser": {
"optional": true
}
},
"resolutions": {
"puppeteer-core": "^23.6.1"
},
"engines": {
"node": ">=18",
"npm": ">=7"
}
}