初始化项目:创建 VuePress Plume 网站

This commit is contained in:
root
2025-09-21 06:30:20 -04:00
commit 6465c714e0
21 changed files with 8073 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "si-meng-web-site-notes",
"type": "module",
"version": "1.0.0",
"description": "祀梦的笔记网站",
"license": "MIT",
"engines": {
"node": "^20.6.0 || >=22.0.0"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:dev-clean": "vuepress dev docs --clean-cache --clean-temp",
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:preview": "http-server docs/.vuepress/dist",
"vp-update": "npx vp-update"
},
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.24",
"vuepress": "2.0.0-rc.24",
"vuepress-theme-plume": "1.0.0-rc.164",
"http-server": "^14.1.1",
"vue": "^3.5.21",
"typescript": "^5.9.2"
}
}