forked from fuma-nama/fumadocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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
{
"name": "root",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:examples": "turbo run dev --filter=./examples/*",
"lint": "turbo run lint",
"lint:format": "oxfmt --check",
"format": "oxfmt",
"release": "turbo run build --filter=./packages/* && changeset publish",
"test": "vitest",
"types:check": "turbo run types:check --continue",
"version": "changeset version && node scripts/update-stackblitz-versions.mjs && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"concurrently": "^9.2.1",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"rimraf": "^6.1.3",
"turbo": "2.9.14",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": ">= 24.14.0"
},
"packageManager": "pnpm@11.1.0"
}