-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.27 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": "rspress-beta",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "bun run clean && rspress build",
"clean": "rm -rf doc_build docs/openapi",
"dev": "rspress dev",
"preview": "rspress preview",
"test": "bun test",
"format": "biome check --write && biome format --write && prettier --write .",
"typecheck": "tsc",
"lint:ts": "biome ci",
"lint:md": "prettier --check .",
"lint:openapi": "vacuum lint --ruleset vacuum-rules.yaml --ignore-file ./vacuum-ignore.yaml --details ./docs/public/openapi.yaml",
"lint": "bun run typecheck && bun run lint:ts && bun run lint:md && bun run lint:openapi"
},
"devDependencies": {
"@apidevtools/swagger-parser": "12.1.0",
"@biomejs/biome": "2.4.15",
"@quobix/vacuum": "0.26.4",
"@rspress/core": "2.0.11",
"@rspress/plugin-rss": "2.0.11",
"@rspress/plugin-sitemap": "2.0.11",
"@scalar/api-reference-react": "0.9.34",
"@tsconfig/bun": "1.0.10",
"@types/bun": "1.3.13",
"micromark": "4.0.2",
"openapi-types": "12.1.3",
"prettier": "3.8.3",
"rsbuild-plugin-open-graph": "1.1.2",
"rspress-language-tabs": "1.1.0",
"rspress-plugin-font-figtree": "1.0.1",
"typescript": "6.0.3"
},
"trustedDependencies": [
"@quobix/vacuum"
]
}