-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"format": "vp fmt",
"format:check": "vp fmt --check",
"check": "vp check",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^22.0.0",
"@voidzero-dev/vite-plus-core": "^0.1.12",
"turbo": "^2.9.3",
"typescript": "^5.9.3",
"vite-plus": "^0.1.12"
},
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
],
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core",
"vitest": "npm:@voidzero-dev/vite-plus-test"
}
}
}