-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "lfange",
"version": "1.0.0",
"description": "学习、实敲代码",
"main": "index.js",
"scripts": {
"docs": "vuepress dev docs --temp .temp",
"dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "deploy.sh >err.log",
"test": "echo \"Error: no test specified\" && exit 1",
"talkbuild": "node ./builds/addComponents.js && vuepress build docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lfange/lfange.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lfange/lfange.github.io/issues"
},
"homepage": "https://github.com/lfange/lfange.github.io#readme",
"dependencies": {
"ant-design-vue": "^3.2.20",
"gitalk": "^1.8.0"
},
"devDependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@vuepress/bundler-vite": "2.0.0-rc.11",
"@vuepress/client": "2.0.0-rc.11",
"@vuepress/plugin-back-to-top": "2.0.0-rc.30",
"@vuepress/theme-default": "2.0.0-rc.30",
"@vuepress/utils": "2.0.0-rc.11",
"ant-design-vue": "^3.2.11",
"chalk": "^5.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"vue": "^3.4.27",
"vuepress": "2.0.0-rc.11",
"vuepress-plugin-auto-sidebar": "2.3.2",
"vuepress-theme-hope": "2.0.0-rc.43",
"vuepress-types": "^0.9.4"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "prettier --write",
"*.{js,css,md}": "prettier --write"
}
}