-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
55 lines (55 loc) · 1.56 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
52
53
54
55
{
"name": "vitepress-nav-template",
"type": "module",
"version": "1.0.0",
"description": "基于 VitePress 打造个人前端导航网站",
"private": true,
"scripts": {
"dev": "vitepress dev docs --port=8732",
"build": "vitepress build docs",
"preview": "vitepress preview docs --port 8730",
"prepare": "husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maomao1996/vitepress-nav-template.git"
},
"author": "maomao1996 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maomao1996/vitepress-nav-template/issues"
},
"homepage": "https://github.com/maomao1996/vitepress-nav-template#readme",
"devDependencies": {
"@femm/prettier": "^1.1.0",
"@femm/tailwind-config": "^1.0.0",
"@femm/verify-commit": "^1.0.1",
"@giscus/vue": "^3.0.0",
"@mdit-vue/shared": "^0.12.1",
"@types/node": "^18.18.6",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"medium-zoom": "^1.0.8",
"postcss": "^8.4.33",
"prettier": "^2.8.8",
"sass": "^1.69.4",
"tailwindcss": "^3.4.1",
"vite-plugin-markdown-preview": "^1.1.1",
"vitepress": "^1.0.1",
"vue": "^3.4.21"
},
"prettier": "@femm/prettier",
"lint-staged": {
"*.{js,jsx,tsx,vue,css,scss,less,md,json}": [
"prettier --write"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}