package.json 988 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@briven/ui",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "Shared shadcn/ui components for briven web, docs, and studio",
  6. "type": "module",
  7. "exports": {
  8. ".": {
  9. "types": "./src/index.ts",
  10. "default": "./src/index.ts"
  11. },
  12. "./styles.css": "./src/styles.css",
  13. "./components/*": "./src/components/*.tsx",
  14. "./lib/*": "./src/lib/*.ts"
  15. },
  16. "files": [
  17. "src"
  18. ],
  19. "scripts": {
  20. "lint": "eslint . --max-warnings 0",
  21. "typecheck": "tsc --noEmit"
  22. },
  23. "dependencies": {
  24. "@briven/config": "workspace:*",
  25. "class-variance-authority": "^0.7.1",
  26. "clsx": "^2.1.1",
  27. "lucide-animated": "^1.0.0",
  28. "react-icons": "^5.6.0",
  29. "tailwind-merge": "^3.5.0"
  30. },
  31. "peerDependencies": {
  32. "react": "^19.0.0",
  33. "react-dom": "^19.0.0"
  34. },
  35. "devDependencies": {
  36. "@types/react": "^19.2.14",
  37. "@types/react-dom": "^19.2.3",
  38. "react": "^19.2.5",
  39. "react-dom": "^19.2.5",
  40. "typescript": "^6.0.3"
  41. }
  42. }