- Rename package to `goodgo-docs` - Add `rehype-slug` for automatic heading ID generation - Simplify TableOfContents component by removing manual ID logic
39 lines
996 B
JSON
39 lines
996 B
JSON
{
|
|
"name": "goodgo-docs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev | tee logs/dev.log",
|
|
"build": "next build | tee logs/build.log",
|
|
"start": "next start | tee logs/start.log",
|
|
"lint": "eslint",
|
|
"pages:deploy": "echo 'Deployment handled by Cloudflare Pages automatically'"
|
|
},
|
|
"dependencies": {
|
|
"@mdx-js/react": "^3.0.0",
|
|
"@next/mdx": "^16.0.4",
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^9.4.0",
|
|
"lucide-react": "^0.555.0",
|
|
"next": "16.0.4",
|
|
"next-intl": "^4.5.5",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"rehype-slug": "^6.0.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"three": "^0.182.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mdx-js/loader": "^3.0.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/three": "^0.182.0",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.4",
|
|
"typescript": "^5"
|
|
}
|
|
} |