mirror of
https://github.com/testthedocs/awesome-docs.git
synced 2026-07-16 14:31:25 -05:00
- Added VitePress as dev dependency - Created docs directory structure - Configured VitePress with navigation and sidebar - Added example pages (home, guide, installation) - Updated package.json with docs scripts - Added VitePress-specific entries to .gitignore - Created setup documentation
19 lines
422 B
JSON
19 lines
422 B
JSON
{
|
|
"name": "awesome-docs",
|
|
"version": "1.0.0",
|
|
"description": "Documentation site built with VitePress",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:preview": "vitepress preview docs"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"packageManager": "pnpm@10.20.0",
|
|
"devDependencies": {
|
|
"vitepress": "^1.6.4"
|
|
}
|
|
}
|