chore(docs): move to docs from book (#17096)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Yash Atreya
2025-06-27 18:18:45 +05:30
committed by GitHub
parent 8066771473
commit a33be2e02e
153 changed files with 22 additions and 14 deletions

26
docs/vocs/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "vocs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vocs dev",
"build": "bash scripts/build-cargo-docs.sh && vocs build && bun scripts/generate-redirects.ts && bun scripts/inject-cargo-docs.ts",
"preview": "vocs preview",
"check-links": "bun scripts/check-links.ts",
"generate-redirects": "bun scripts/generate-redirects.ts",
"build-cargo-docs": "bash scripts/build-cargo-docs.sh",
"inject-cargo-docs": "bun scripts/inject-cargo-docs.ts"
},
"dependencies": {
"react": "latest",
"react-dom": "latest",
"vocs": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"glob": "^11.0.3",
"typescript": "latest"
}
}