Files
website/apps/docs/package.json
Mauricio Siu 08c47af4ec Enhance documentation and templates
- Updated package.json to include a new script for generating templates.
- Added "templates" page to the documentation meta.json.
- Expanded API documentation in registry.mdx and settings.mdx to include new endpoints.
- Removed deprecated templates section from core meta.json and deleted the templates.mdx file.
- Introduced new template documentation for various applications including Ackee, Activepieces, Actual Budget, AdGuard Home, Adminer, and more.

This commit improves the overall structure and accessibility of the documentation, ensuring users have the latest information on available templates and API endpoints.
2026-01-29 17:59:35 -06:00

43 lines
1.1 KiB
JSON

{
"name": "docs",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --port 3002",
"start": "next start",
"types:check": "fumadocs-mdx && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"fix-openapi": "node scripts/fix-openapi.mjs",
"generate-templates": "node scripts/generate-templates.mjs",
"build:docs": "npm run fix-openapi && npm run generate-templates && node generate-docs.mjs"
},
"dependencies": {
"@next/third-parties": "16.0.7",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"fumadocs-core": "16.2.3",
"fumadocs-mdx": "14.1.0",
"fumadocs-openapi": "10.1.1",
"fumadocs-ui": "16.2.3",
"lucide-react": "^0.552.0",
"next": "16.0.10",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shiki": "3.19.0",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.16",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.16",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}