mirror of
https://github.com/zenlm/zen.git
synced 2026-07-26 22:28:05 +00:00
- Convert to Next.js 15 with TypeScript - Create reusable React components for Header/Footer (DRY) - Convert all pages to TSX: page.tsx, models/page.tsx, research/page.tsx - Configure static export to docs/ for GitHub Pages - Add .nojekyll for proper routing - All builds generate static HTML (SSG) - Remove old build.js template system - TypeScript for type safety - Next.js Image optimization disabled for static export
24 lines
509 B
JSON
24 lines
509 B
JSON
{
|
|
"name": "zen-lm-website",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"export": "next build && next export -o docs",
|
|
"deploy": "npm run export && touch docs/.nojekyll"
|
|
},
|
|
"dependencies": {
|
|
"next": "^15.1.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"typescript": "^5"
|
|
}
|
|
}
|