-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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": "saole",
"type": "module",
"version": "1.0.0",
"description": "saole个人前端博客",
"author": "renzg1024",
"license": "MIT",
"scripts": {
"create": "node ./scripts/index.js",
"createServer": "node ./scripts/server2.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"build:github": "cross-env APP_BASE_PATH=/saole/ vitepress build docs",
"docs:serve": "vitepress serve docs --port 9527",
"docs:preview": "vitepress preview docs",
"prepare": "husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/renzg1024/saole.git"
},
"devDependencies": {
"@types/node": "^20.10.4",
"vitepress": "1.0.0-alpha.60",
"@femm/prettier": "^1.1.0",
"@femm/verify-commit": "^1.0.1",
"@mdit-vue/shared": "^0.12.1",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"medium-zoom": "^1.0.8",
"prettier": "^2.8.8",
"sass": "^1.69.4",
"vue": "^3.3.4"
},
"prettier": "@femm/prettier",
"lint-staged": {
"*.{js,jsx,tsx,vue,css,scss,less,json}": [
"prettier --write"
]
}
}