mirror of
https://github.com/hengyoush/kyanos.git
synced 2025-12-20 01:03:46 +08:00
* docs: introduce prettier and md-padding to format docs Signed-off-by: spencercjh <spencercjh@gmail.com> * fix: make github alerts work Signed-off-by: spencercjh <spencercjh@gmail.com> * fix: make all markdown extensions work Signed-off-by: spencercjh <spencercjh@gmail.com> * fix: reformat new codes from main Signed-off-by: spencercjh <spencercjh@gmail.com> --------- Signed-off-by: spencercjh <spencercjh@gmail.com>
22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"devDependencies": {
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"md-padding": "1.9.2",
|
|
"prettier": "3.4.2",
|
|
"vitepress": "^1.4.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
},
|
|
"ghooks": {
|
|
"commit-msg": "./validate-commit-msg.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:preview": "vitepress preview docs"
|
|
}
|
|
}
|