forked from oxc-project/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev",
"prebuild": "pnpm run sponsors",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "oxlint --type-aware --type-check --deny-warnings",
"lint:fix": "pnpm lint --fix && typos -w",
"fmt": "oxfmt",
"knip": "knip",
"sponsors": "degit Boshen/sponsors temp --force && mv temp/sponsors.svg public/sponsors.svg",
"prepare": "husky"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "2.0.10",
"@types/node": "^24.10.2",
"@voidzero-dev/vitepress-theme": "^4.0.0",
"degit": "^2.8.4",
"esbuild": "0.27.2",
"feed": "^5.1.0",
"husky": "^9.1.7",
"knip": "^5.72.0",
"lint-staged": "16.2.7",
"markdown-it-container": "^4.0.0",
"oxc-minify": "^0.105.0",
"oxfmt": "^0.20.0",
"oxlint": "^1.32.0",
"oxlint-tsgolint": "^0.10.0",
"typescript": "~5.9.3",
"vitepress": "2.0.0-alpha.15",
"vitepress-plugin-group-icons": "^1.6.5",
"vue": "^3.5.25"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.26.0",
"pnpm": {
"overrides": {
"vitepress>vite": "npm:vite@8.0.0-beta.3"
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}