mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
- Add `docs/` — Next.js 15 app powered by Fumadocs with a landing page, docs layout, search, OG image generation, and LLM text routes - Cover getting started, configuration, integrations (Plex, Emby, Jellyfin, Radarr, Sonarr), mobile app setup, and telemetry in MDX - Exclude `docs/` from root Biome config since it has its own `biome.json`
37 lines
934 B
JSON
37 lines
934 B
JSON
{
|
|
"name": "sofa-docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"start": "next start",
|
|
"lint": "biome check",
|
|
"format": "biome format --write",
|
|
"check-types": "fumadocs-mdx && next typegen && tsc --noEmit",
|
|
"postinstall": "fumadocs-mdx"
|
|
},
|
|
"dependencies": {
|
|
"@takumi-rs/image-response": "^0.73.0",
|
|
"fumadocs-core": "16.6.17",
|
|
"fumadocs-mdx": "14.2.10",
|
|
"fumadocs-ui": "16.6.17",
|
|
"lucide-react": "^0.577.0",
|
|
"next": "16.1.6",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"tailwind-merge": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.7",
|
|
"@tailwindcss/postcss": "^4.2.1",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^25.5.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"postcss": "^8.5.8",
|
|
"tailwindcss": "^4.2.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|