mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-16 21:45:14 +00:00
The build script now uses 'npx vitepress build docs' to ensure the correct VitePress binary is used, improving compatibility and reliability.
14 lines
284 B
JSON
14 lines
284 B
JSON
{
|
|
"type": "module",
|
|
"scripts": {
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:serve": "vitepress serve docs",
|
|
"build": "npx vitepress build docs"
|
|
},
|
|
"devDependencies": {
|
|
"js-yaml": "^4.1.0",
|
|
"vitepress": "^1.2.3"
|
|
}
|
|
}
|