-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
47
{
"name": "vite-plus-monorepo",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm -F @voidzero-dev/* -F vite-plus build",
"bootstrap-cli": "pnpm build && cargo build -p vite_global_cli --release && pnpm install-global-cli",
"bootstrap-cli:ci": "pnpm install-global-cli",
"install-global-cli": "tool install-global-cli",
"tsgo": "tsgo -b tsconfig.json",
"lint": "vp lint --type-aware --type-check --threads 4",
"test": "vp test run && pnpm -r snap-test",
"fmt": "vp fmt",
"test:unit": "vp test run",
"docs:dev": "pnpm --filter=./docs dev",
"docs:build": "pnpm --filter=./docs build",
"prepare": "husky"
},
"devDependencies": {
"@napi-rs/cli": "catalog:",
"@oxc-node/cli": "catalog:",
"@oxc-node/core": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"@voidzero-dev/vite-plus-tools": "workspace:*",
"bingo": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"playwright": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plus": "workspace:*",
"vitest": "catalog:",
"zod": "catalog:"
},
"lint-staged": {
"*.@(js|ts|tsx|md|yaml|yml)": "vp check --fix",
"*.rs": "cargo fmt --"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@10.28.0"
}