-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "webcrack",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "vitest --no-isolate",
"test:coverage": "vitest run --coverage --no-isolate",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/coverage-v8": "^2.1.3",
"@webcrack/eslint-config": "workspace:*",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=2.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=5.2.1 <=6.5.6": ">=6.5.7",
"micromatch@<4.0.8": ">=4.0.8",
"vite@>=5.2.0 <5.2.14": ">=5.2.14",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"elliptic@<6.5.6": ">=6.5.6"
}
}
}