-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"format:check": "prettier --check --cache .",
"format": "prettier --write --cache .",
"lint": "eslint . --ext .js,.mjs,.ts,.mts,.vue",
"lint:fix": "pnpm lint --fix",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm format"
},
"lint-staged": {
"*.{js,mjs,ts,mts,vue}": "pnpm lint:fix"
},
"engines": {
"node": ">=20",
"npm": ">=10",
"pnpm": ">=9"
},
"devDependencies": {
"@iconify/json": "^2.2.295",
"@types/dom-view-transitions": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"busuanzi.pure.js": "^1.0.3",
"eslint": "^8.57.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3",
"unocss": "^0.58.9",
"vite": "^5.4.11",
"vitepress": "^1.5.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3"
},
"pnpm": {
"overrides": {
"typescript": "$typescript",
"vite": "$vite",
"vitepress": "$vitepress"
}
}
}