-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"private": true,
"type": "module",
"scripts": {
"build": "./build.sh",
"build:clean": "./build.sh --clean",
"clean": "./build.sh --clean && echo 'Clean completed'",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:watch": "vitest",
"publish": "npx lerna publish",
"publish:next": "npx lerna publish --dist-tag=next",
"pre-release-check": "./pre-release-check.sh"
},
"devDependencies": {
"@vercel/analytics": "^1.5.0",
"lerna": "^8.2.4",
"prettier": "^3.6.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.10.0",
"engines": {
"node": ">=20.17.0",
"pnpm": ">=9.10.0",
"npm": "forbidden, use pnpm"
},
"pnpm": {
"overrides": {
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.0.5",
"tough-cookie@<4.1.3": ">=4.1.3",
"cookie@<0.7.0": ">=0.7.0",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
"form-data@<2.5.4": ">=2.5.4",
"lodash@<4.17.5": ">=4.17.5",
"lodash@<4.17.21": ">=4.17.21",
"lodash@<4.17.11": ">=4.17.11",
"lodash@<4.17.12": ">=4.17.12",
"lodash@>=3.7.0 <4.17.19": ">=4.17.19",
"devalue@<5.3.2": ">=5.3.2",
"vite@>=6.0.0 <=6.4.0": ">=6.4.1",
"playwright@<1.55.1": ">=1.55.1"
}
}
}