mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-16 13:35:11 +00:00
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.
14 lines
315 B
JSON
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"
|
|
}
|
|
}
|