-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "docs",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"commit": "git-cz",
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@vueuse/core": "^10.1.2",
"axios": "^1.4.0",
"element-plus": "^2.3.4",
"vue": "^3.2.47"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-conventional-changelog-zh": "0.0.2",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.4",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitepress": "^1.0.0-alpha.75",
"vue-tsc": "^1.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh",
"types": {
"merge": {
"description": "merge branch",
"title": "Merge"
},
"release": {
"description": "release version",
"title": "Release"
},
"WIP": {
"description": "A function in progress is incomplete",
"title": "WIP"
}
}
}
}
}