-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
{
"name": "cv",
"version": "0.0.0-semantic-release",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"lint": "textlint src/*.md",
"build:pdf": "md-to-pdf src/*.md --config-file pdf-config.js",
"docs:dev": "vitepress dev src",
"docs:build": "vitepress build src",
"docs:preview": "vitepress preview src"
},
"author": "Zhumei Song <[email protected]>",
"devDependencies": {
"@zhumeisong/git-cz-config": "^1.1.1",
"git-cz": "4.9.0",
"md-to-pdf": "^5.2.4",
"semantic-release": "24.2.0",
"textlint": "14.3.0",
"textlint-rule-spellcheck-tech-word": "5.0.0",
"vitepress": "^1.4.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"packageManager": "[email protected]",
"volta": {
"node": "22.11.0",
"pnpm": "9.12.3"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}