-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.68 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "cnblog2md",
"version": "1.9.0",
"description": "解析博客园备份 xml 文件,生成 markdown 和对应图片文件,保存到本地",
"type": "commonjs",
"main": "bin/cnb.mjs",
"bin": {
"cnb": "bin/cnb.mjs"
},
"bugs": {
"url": "https://github.com/Teemwu/cnblog2md/issues"
},
"files": [
"bin",
"src",
"template"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/Teemwu/cnblog2md.git"
},
"homepage": "https://github.com/Teemwu/cnblog2md#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"semantic-release": "semantic-release"
},
"keywords": [
"cnblog",
"cnblog2md",
"博客园",
"博客"
],
"author": {
"name": "teemwu",
"email": "[email protected]",
"url": "https://github.com/Teemwu"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "18.11.0",
"@types/turndown": "5.0.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"semantic-release": "19.0.5"
},
"dependencies": {
"@vscode/vscode-languagedetection": "1.0.21",
"axios": "1.1.3",
"chalk": "5.1.2",
"commander": "9.4.1",
"dayjs": "1.11.5",
"fs-extra": "10.1.0",
"handlebars": "4.7.7",
"node-html-parser": "6.1.1",
"ora": "6.1.2",
"shiki": "0.11.1",
"turndown": "7.1.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}