-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.93 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "echo-note",
"description": "echo的个人笔记",
"author": "echo",
"private": true,
"version": "0.0.6",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@w3ctech-editorial-department/vitepress-auto-configure-nav-sidebar": "^1.0.0",
"husky": "^8.0.3",
"standard-version": "^9.5.0"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "sh deploy.sh",
"prepare": "husky install",
"release": "standard-version"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "新功能、新特性"
},
{
"type": "fix",
"section": "修改 bug"
},
{
"type": "perf",
"section": "更改代码,以提高性能(在不影响代码内部行为的前提下,对程序性能进行优化)"
},
{
"type": "refactor",
"section": "代码重构(重构,在不影响代码内部行为、功能下的代码修改)"
},
{
"type": "docs",
"section": "文档修改"
},
{
"type": "style",
"section": "代码格式修改, 注意不是 css 修改(例如分号修改)"
},
{
"type": "test",
"section": "测试用例新增、修改"
},
{
"type": "build",
"section": "影响项目构建或依赖项修改"
},
{
"type": "revert",
"section": "恢复上一次提交"
},
{
"type": "ci",
"section": "持续集成相关文件修改"
},
{
"type": "chore",
"section": "其他修改(不在上述类型中的修改)"
},
{
"type": "release",
"section": "发布新版本"
}
]
},
"dependencies": {
"vitepress": "1.0.0-rc.34"
}
}