-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.96 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.96 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
48
49
50
51
52
53
54
55
56
57
{
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm -r --filter='./packages/**' run build",
"build:test": "pnpm -r --filter='./packages/**' run build:test",
"clean": "pnpm -r --filter='./packages/**' run clean",
"dev": "pnpm -r --filter='./packages/**' --parallel run dev",
"docs:build": "pnpm --filter docs run build",
"docs:dev": "pnpm --filter docs run dev",
"format": "biome format . --write",
"postinstall": "simple-git-hooks install",
"lint": "biome check . --diagnostic-level=warn",
"publint": "pnpm build && pnpm -r --filter='vite-plugin-checker' exec publint",
"sort-package-json": "npx sort-package-json \"packages/*/package.json\"",
"test": "pnpm test-unit && pnpm test-serve && pnpm test-build",
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"test-knip": "knip",
"test-serve": "vitest run -c vitest.config.e2e.ts",
"test-unit": "vitest run",
"test-unit:watch": "vitest",
"type-check": "pnpm -r --parallel --filter \"vite-plugin-checker\" exec tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"package.json": "sort-package-json",
"packages/**/*.{js,ts}": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/babel__code-frame": "^7.27.0",
"@types/node": "^20.19.9",
"execa": "^9.6.1",
"fast-json-stable-stringify": "^2.1.0",
"knip": "^6.5.0",
"lint-staged": "^16.4.0",
"oxlint": "^1.61.0",
"pkg-pr-new": "^0.0.66",
"playwright-chromium": "^1.59.1",
"publint": "^0.3.18",
"simple-git-hooks": "^2.13.1",
"sort-deep-object-arrays": "^1.1.2",
"sort-package-json": "^3.6.1",
"tiny-invariant": "^1.3.3",
"tinyglobby": "^0.2.16",
"typescript": "^5.9.3",
"vite": "^8.0.9",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.15.9"
}