-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "vite-plus-monorepo",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@10.22.0",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"type": "module",
"scripts": {
"bootstrap-cli": "pnpm --filter=@voidzero-dev/vite-plus build && pnpm --filter=@voidzero-dev/global build && pnpm install-global-cli",
"bootstrap-cli:ci": "pnpm --filter=@voidzero-dev/global build && pnpm install-global-cli",
"install-global-cli": "npm install -g ./packages/global",
"typecheck": "tsc -b tsconfig.json",
"lint": "vite lint --type-aware --threads 4",
"test": "vite test run --config vite.config.ts && pnpm -r snap-test",
"prepare": "husky"
},
"devDependencies": {
"@oxc-node/cli": "catalog:",
"@oxc-node/core": "catalog:",
"@types/node": "catalog:",
"@voidzero-dev/vite-plus": "workspace:*",
"@voidzero-dev/vite-plus-tools": "workspace:*",
"husky": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|md|json|html|toml)": [
"dprint fmt --staged"
],
"*.@(js|ts|tsx)": [
"oxlint -- --fix"
],
"*.rs": [
"cargo fmt --"
]
}
}