-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "tkg-nav",
"version": "1.0.0",
"description": "高木导航站",
"private": true,
"scripts": {
"dev": "vitepress dev docs --host",
"build": "vitepress build docs",
"build:github": "cross-env APP_BASE_PATH=/vitepress-fe-nav/ vitepress build docs",
"prepare": "husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maomao1996/vitepress-fe-nav.git"
},
"author": "maomao1996 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maomao1996/vitepress-fe-nav/issues"
},
"homepage": "https://github.com/maomao1996/vitepress-fe-nav#readme",
"devDependencies": {
"@femm/prettier": "^1.0.2",
"@femm/verify-commit": "^1.0.1",
"@mdit-vue/shared": "^0.12.0",
"@types/node": "^18.16.3",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"sass": "^1.58.3",
"vitepress": "1.0.0-alpha.48",
"vitepress-plugin-google-analytics": "^1.0.2",
"vue": "^3.2.47"
},
"prettier": "@femm/prettier",
"lint-staged": {
"*.{js,jsx,tsx,vue,css,scss,less,md,json}": [
"prettier --write"
]
}
}