forked from fuma-nama/fumadocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"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.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/style-guide": "^6.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsup": "8.0.2",
"turbo": "1.13.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"pnpm": {
"overrides": {
"@opentelemetry/api": "^1.4.1",
"remark-rehype": "^11.0.0",
"@types/mdast": "^4.0.3",
"remark-parse": "^11.0.0",
"unified": "^11.0.4",
"mdx-bundler": "^10.0.1"
},
"peerDependencyRules": {
"ignoreMissing": [
"esbuild",
"next"
]
}
}
}