Initialize documentation module with Fumadocs integration and basic setup

This commit is contained in:
Mathis HERRIOT
2026-01-05 00:28:02 +01:00
parent e953b2aa44
commit 1720cd6c36
22 changed files with 448 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"name": "@memegoat/documentation",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"fumadocs-core": "16.4.3",
"fumadocs-mdx": "14.2.4",
"fumadocs-ui": "16.4.3",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"@biomejs/biome": "^2.3.10"
}
}