package.json 895 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@briven/docs",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "docs.briven.tech — developer documentation (next.js 16 + fumadocs)",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "next dev -p 3002",
  9. "build": "next build",
  10. "start": "next start -p 3002",
  11. "lint": "eslint . --max-warnings 0",
  12. "typecheck": "tsc --noEmit"
  13. },
  14. "dependencies": {
  15. "@briven/config": "workspace:*",
  16. "@briven/ui": "workspace:*",
  17. "fumadocs-core": "^16.8.4",
  18. "fumadocs-mdx": "^14.3.1",
  19. "fumadocs-ui": "^16.8.4",
  20. "geist": "^1.7.0",
  21. "next": "^16.2.9",
  22. "react": "^19.2.5",
  23. "react-dom": "^19.2.5"
  24. },
  25. "devDependencies": {
  26. "@tailwindcss/postcss": "^4.2.4",
  27. "@types/node": "^25.6.0",
  28. "@types/react": "^19.2.14",
  29. "@types/react-dom": "^19.2.3",
  30. "postcss": "^8.5.12",
  31. "tailwindcss": "^4.2.4",
  32. "typescript": "^6.0.3"
  33. }
  34. }