-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "vitepress-nav",
"version": "1.0.0",
"description": "基于 VitePress 打造个人前端导航网站",
"type": "module",
"private": true,
"scripts": {
"dev": "vitepress dev docs --port=3100",
"build": "vitepress build docs",
"build:github": "cross-env APP_BASE_PATH=/vitepress-nav/ vitepress build docs",
"prepare": "husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rzx007/nav.git"
},
"author": "rzx007",
"license": "MIT",
"homepage": "https://github.com/rzx007/nav.git#readme",
"devDependencies": {
"@femm/prettier": "^1.1.0",
"@mdit-vue/shared": "^0.12.1",
"@types/escape-html": "^1.0.4",
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-container": "^2.0.9",
"@types/node": "^18.19.22",
"@types/prismjs": "^1.26.3",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.39",
"prettier": "^2.8.8",
"sass": "^1.71.1",
"tailwindcss": "^3.4.4",
"vitepress": "1.0.0-rc.39",
"vue": "^3.4.21"
},
"prettier": "@femm/prettier",
"lint-staged": {
"*.{js,jsx,tsx,vue,css,scss,less,md,json}": [
"prettier --write"
]
},
"dependencies": {
"escape-html": "^1.0.3",
"markdown-it": "^13.0.2",
"markdown-it-container": "^3.0.0",
"prism-theme-vars": "^0.2.4",
"prismjs": "^1.29.0"
}
}