-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 3.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "yunplex",
"version": "1.0.4",
"description": "",
"private": true,
"dependencies": {
"@seald-io/nedb": "^4.0.2",
"NeteaseCloudMusicApi": "^4.12.2",
"dayjs": "^1.11.10",
"metaflac-js": "^1.0.5",
"music-metadata": "^8.1.4",
"node-fetch": "^3.3.2",
"node-id3": "^0.2.6",
"plex-api": "^5.3.2",
"readline": "^1.3.0"
},
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-conventional-changelog-zh": "0.0.2",
"eslint": "^8.34.0",
"eslint-config-egg": "^7.1.0",
"prettier": "3.1.0",
"prettier-eslint": "^16.3.0",
"standard-version": "^9.5.0"
},
"scripts": {
"start": "node ./sync.mjs",
"lint": "eslint .",
"commit": "git-cz",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh",
"defaultType": "[新增功能]",
"types": {
"[新增功能]": {
"description": "新增功能点、新增需求",
"title": "Features"
},
"[Bug 修复]": {
"description": " 修复Bug,线上,测试,验收阶段的bug",
"title": "Bug Fixes"
},
"[文档修改]": {
"description": "文档增删改",
"title": "Documentation"
},
"[样式修改]": {
"description": "样式修改(空白、格式、缺少分号等)",
"title": "Styles"
},
"[代码重构]": {
"description": "既不修复bug也不添加新功能的更改",
"title": "Code Refactoring"
},
"[性能优化]": {
"description": "性能优化",
"title": "Performance Improvements"
},
"[测试代码]": {
"description": "增加测试",
"title": "Tests"
},
"[编译代码]": {
"description": "影响构建系统或外部依赖项的更改(示例范围:gulp、broccoli、npm)",
"title": "Builds"
},
"[持续集成]": {
"description": "对CI配置文件和脚本的更改(示例范围:Travis, Circle, BrowserStack, SauceLabs)",
"title": "Continuous Integrations"
},
"[其他提交]": {
"description": "除src目录或测试文件以外的修改",
"title": "Chores"
},
"[回退更改]": {
"description": "回退历史版本",
"title": "Reverts"
},
"[修改冲突]": {
"description": "修改冲突",
"title": "Conflict"
},
"[字体修改]": {
"description": "字体文件更新",
"title": "Fonts"
},
"[删除文件]": {
"description": "删除文件",
"title": "Delete Files"
},
"[暂存文件]": {
"description": "暂存文件",
"title": "Stash Files"
}
}
}
}
}