forked from fuma-nama/fumadocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.31 KB
/
package.json
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",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:all": "turbo run dev --filter=!./examples/*",
"dev:examples": "turbo run dev --filter=./examples/*",
"lint": "turbo run lint",
"lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"prettier": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
"release": "turbo run build --filter=./packages/* && changeset publish && pnpm -r run postpublish",
"test": "vitest",
"types:check": "turbo run types:check",
"version": "changeset version && pnpm install --lockfile-only"
},
"prettier": "@vercel/style-guide/prettier",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vercel/style-guide": "^6.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "8.2.3",
"turbo": "2.0.9",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">= 18.17.0"
}
}