-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "root",
"private": true,
"workspaces": [
"examples/*",
"packages/*",
"website"
],
"scripts": {
"prepare": "lefthook install",
"check": "turbo run check",
"lint": "turbo run lint && oxlint",
"format": "turbo run format && oxfmt",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "turbo run build --filter=\"./packages/*\"",
"dev": "turbo watch build --filter=\"./packages/*\"",
"release:version": "changeset version",
"release:snapshot:version": "changeset version --snapshot beta",
"release:publish": "pnpm build && changeset publish --no-git-tag",
"release:snapshot:publish": "pnpm build && changeset publish --tag beta --no-git-tag"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@changesets/config": "^3.1.4",
"@types/node": "^25.9.5",
"@vitest/coverage-v8": "^4.1.10",
"lefthook": "^2.1.10",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"tsdown": "^0.22.14",
"turbo": "^2.10.7",
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.17.0"
}