-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
{
"name": "mydocuments",
"version": "0.0.1",
"description": "个人技术文档网站",
"main": "index.js",
"type": "module",
"scripts": {
"deploy:github": "github_deploy.sh",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint \"./docs/**/*.{vue,js,ts,mts}\" --fix",
"prettier-format": "prettier --config .prettierrc.cjs \"./docs/**/*.{vue,js,ts,mts}\" --write",
"prepare": "husky install"
},
"author": "moyu",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@iconify-json/fa6-solid": "^1.1.15",
"@iconify-json/fluent-emoji-flat": "^1.1.12",
"@iconify-json/ph": "^1.1.6",
"@iconify-json/pixelarticons": "^1.1.7",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"busuanzi.pure.js": "^1.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"flexsearch": "^0.7.31",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"markdown-it-katex": "^2.0.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"vitepress": "^1.0.0-rc.4",
"vitepress-plugin-search": "^1.0.4-alpha.20",
"vue": "^3.3.4"
},
"dependencies": {
"@vitejs/plugin-vue-jsx": "^3.0.1",
"vitepress-plugin-pagefind": "^0.2.3"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"npm run prettier-format",
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}