Files
pos-system/apps/web-docs/package.json
Ho Ngoc Hai 11169246ac feat(docs): Add gray-matter package and update documentation components
- Introduced `gray-matter` for frontmatter parsing in markdown files.
- Refactored documentation components to utilize new constants and improve slug handling.
- Enhanced language switcher functionality to maintain pathnames during locale changes.
- Updated navigation and search components to support dynamic content loading and improved user experience.
- Revised documentation text to reflect the new branding from Quaros to Goodgo.
2026-01-08 15:09:17 +07:00

41 lines
1.0 KiB
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",
"gray-matter": "^4.0.3",
"lucide-react": "^0.555.0",
"mermaid": "^11.12.2",
"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"
}
}