forked from fuma-nama/fumadocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"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.26.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/style-guide": "^5.1.0",
"concurrently": "^8.2.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsup": "8.0.2",
"turbo": "1.12.4",
"typescript": "5.3.3",
"vitest": "^1.0.4"
},
"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"
]
}
}
}