system-prompts-and-models-o.../package.json
tycon 2f185d919c Update build script to use direct VitePress binary
Changed the build script in package.json to invoke the VitePress binary directly via node instead of using npx. This can improve reliability in certain environments where npx behavior may vary.
2025-10-12 01:00:59 +08:00

14 lines
315 B
JSON

{
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"build": "node node_modules/vitepress/bin/vitepress.js build docs"
},
"devDependencies": {
"js-yaml": "^4.1.0",
"vitepress": "^1.2.3"
}
}