-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "website",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vitepress dev",
"build": "pnpm run sponsors && vitepress build",
"preview": "vitepress preview",
"lint": "oxlint -W correctness -W no-unused-vars --deny-warnings",
"lint:fix": "pnpm lint --fix && typos -w && pnpm fmt --write .",
"fmt": "prettier",
"typecheck": "tsc",
"sponsors": "degit Boshen/sponsors temp --force && mv temp/sponsors.svg public/sponsors.svg"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@vueuse/core": "^12.0.0",
"degit": "^2.8.4",
"feed": "^4.2.2",
"lint-staged": "15.2.10",
"oxlint": "^0.14.0",
"prettier": "^3.4.0",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.7.0",
"vitepress": "^1.5.0",
"vitepress-plugin-group-icons": "^1.3.0",
"vue": "^3.5.13"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,mts,css,md,json,yml}": "pnpm run fmt --write"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.11.0"
}
}