-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "root",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"check": "turbo run check",
"lint": "turbo run lint && oxlint",
"format": "turbo run format && oxfmt",
"test": "turbo run test",
"coverage": "turbo run coverage",
"build": "turbo run build --filter=\"./packages/*\"",
"dev": "turbo watch build --filter=\"./packages/*\"",
"prepare": "husky & ts-patch install",
"release:version": "changeset version",
"release:snapshot:version": "changeset version --snapshot beta",
"release:publish": "pnpm build && changeset publish",
"release:snapshot:publish": "pnpm build && changeset publish --tag beta --no-git-tag"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/config": "^3.1.3",
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"ts-patch": "^3.3.0",
"tsdown": "^0.20.3",
"turbo": "^2.8.5",
"typescript": "^5.9.3",
"typescript-transform-paths": "^3.5.6",
"vite-tsconfig-paths": "^6.1.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.31.0"
}