feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
{
|
2025-11-30 16:58:59 +00:00
|
|
|
"name": "docs",
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
"private": true,
|
2025-11-30 16:58:59 +00:00
|
|
|
"sideEffects": false,
|
|
|
|
|
"type": "module",
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
"scripts": {
|
2025-11-30 16:58:59 +00:00
|
|
|
"dev": "vite dev",
|
|
|
|
|
"build": "vite build",
|
|
|
|
|
"start": "node .output/server/index.mjs",
|
|
|
|
|
"types:check": "fumadocs-mdx && tsc --noEmit",
|
|
|
|
|
"postinstall": "fumadocs-mdx"
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-11-30 16:58:59 +00:00
|
|
|
"@tanstack/react-router": "^1.134.12",
|
|
|
|
|
"@tanstack/react-router-devtools": "^1.134.12",
|
|
|
|
|
"@tanstack/react-start": "^1.134.12",
|
2026-04-02 12:27:36 +00:00
|
|
|
"@vercel/analytics": "^2.0.1",
|
feat: overhauled marketing website and documentation with high-end animations (#150)
* feat: revamped marketing website and documentation with high-end animations and glassmorphism
- Redesigned marketing site (apps/web) with a terminal-inspired, professional aesthetic.
- Implemented Hero v2 with cinematic, spring-based animations matching the release video.
- Added interactive Pokemon Buddy draggable widget inspired by the desktop app.
- Integrated react-scan for performance auditing.
- Applied consistent glassmorphism, border-flow animations, and Geist Mono typography.
- Revamped Databases, Blog, Comparison, and Download pages for visual consistency.
- Updated documentation (apps/docs) landing page with matching motion choreography and living background.
- Fixed fs module resolution issues in the web app and optimized build stability for React 19.
* chore(docs): remove internal marketing playbook and tracker files
Remove Reddit playbook and analytics tracker docs from the public documentation set, and update marketing navigation to keep the docs section consistent.
Made-with: Cursor
* fix: address review feedback for marketing overhaul
- Extract download page metadata into layout.tsx (SEO regression fix)
- Move react-scan to devDependencies, dynamic import to avoid prod bundle
- Soften unverified '10,000+ developers' claim in CTA
- Restore StructuredData for FAQ rich snippets
- Restore close-on-scroll for mobile menu in header
- Remove `as any` spreads from motion.div — use className directly
- Gate Pokemon buddy behind NEXT_PUBLIC_ENABLE_POKEMON_BUDDY flag
- Fix mood interval priority inversion (excited was unreachable)
* chore: add lock file
* feat: add framer-motion animations to docs pages
---------
Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
2026-04-07 12:19:02 +00:00
|
|
|
"framer-motion": "12.38.0",
|
2025-11-30 16:58:59 +00:00
|
|
|
"fumadocs-core": "16.2.1",
|
|
|
|
|
"fumadocs-mdx": "14.0.4",
|
|
|
|
|
"fumadocs-ui": "16.2.1",
|
|
|
|
|
"lucide-static": "^0.552.0",
|
feat: overhauled marketing website and documentation with high-end animations (#150)
* feat: revamped marketing website and documentation with high-end animations and glassmorphism
- Redesigned marketing site (apps/web) with a terminal-inspired, professional aesthetic.
- Implemented Hero v2 with cinematic, spring-based animations matching the release video.
- Added interactive Pokemon Buddy draggable widget inspired by the desktop app.
- Integrated react-scan for performance auditing.
- Applied consistent glassmorphism, border-flow animations, and Geist Mono typography.
- Revamped Databases, Blog, Comparison, and Download pages for visual consistency.
- Updated documentation (apps/docs) landing page with matching motion choreography and living background.
- Fixed fs module resolution issues in the web app and optimized build stability for React 19.
* chore(docs): remove internal marketing playbook and tracker files
Remove Reddit playbook and analytics tracker docs from the public documentation set, and update marketing navigation to keep the docs section consistent.
Made-with: Cursor
* fix: address review feedback for marketing overhaul
- Extract download page metadata into layout.tsx (SEO regression fix)
- Move react-scan to devDependencies, dynamic import to avoid prod bundle
- Soften unverified '10,000+ developers' claim in CTA
- Restore StructuredData for FAQ rich snippets
- Restore close-on-scroll for mobile menu in header
- Remove `as any` spreads from motion.div — use className directly
- Gate Pokemon buddy behind NEXT_PUBLIC_ENABLE_POKEMON_BUDDY flag
- Fix mood interval priority inversion (excited was unreachable)
* chore: add lock file
* feat: add framer-motion animations to docs pages
---------
Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
2026-04-07 12:19:02 +00:00
|
|
|
"motion-dom": "^12.38.0",
|
|
|
|
|
"motion-utils": "^12.36.0",
|
2025-11-30 16:58:59 +00:00
|
|
|
"react": "^19.2.0",
|
|
|
|
|
"react-dom": "^19.2.0",
|
|
|
|
|
"tailwind-merge": "^3.3.1",
|
|
|
|
|
"vite": "^7.2.0"
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-11-30 16:58:59 +00:00
|
|
|
"@tailwindcss/vite": "^4.1.16",
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
"@types/mdx": "^2.0.13",
|
2025-11-30 16:58:59 +00:00
|
|
|
"@types/node": "^24.10.0",
|
|
|
|
|
"@types/react": "^19.2.2",
|
|
|
|
|
"@types/react-dom": "^19.2.2",
|
|
|
|
|
"@vitejs/plugin-react": "^5.1.0",
|
|
|
|
|
"nitro": "3.0.1-alpha.1",
|
|
|
|
|
"tailwindcss": "^4.1.16",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vite-tsconfig-paths": "^5.1.4"
|
feat(docs): add Fumadocs documentation site
- Create apps/docs package with Fumadocs framework
- Configure dark terminal-inspired theme matching data-peek aesthetic
- Add comprehensive documentation structure:
- Getting Started: installation, first connection, first query
- Features: query editor, schema explorer, results viewer, inline editing,
table designer, ERD diagrams, query plans, saved queries, export
- Configuration: settings, themes, licensing
- Database Support: PostgreSQL, MySQL
- Reference: keyboard shortcuts
- Update .gitignore to allow apps/docs (vs root docs/)
2025-11-30 09:55:07 +00:00
|
|
|
}
|
2026-04-09 14:39:31 +00:00
|
|
|
}
|