| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "@briven/ui",
- "version": "0.0.0",
- "private": true,
- "description": "Shared shadcn/ui components for briven web, docs, and studio",
- "type": "module",
- "exports": {
- ".": {
- "types": "./src/index.ts",
- "default": "./src/index.ts"
- },
- "./styles.css": "./src/styles.css",
- "./components/*": "./src/components/*.tsx",
- "./lib/*": "./src/lib/*.ts"
- },
- "files": [
- "src"
- ],
- "scripts": {
- "lint": "eslint . --max-warnings 0",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@briven/config": "workspace:*",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "lucide-animated": "^1.0.0",
- "react-icons": "^5.6.0",
- "tailwind-merge": "^3.5.0"
- },
- "peerDependencies": {
- "react": "^19.0.0",
- "react-dom": "^19.0.0"
- },
- "devDependencies": {
- "@types/react": "^19.2.14",
- "@types/react-dom": "^19.2.3",
- "react": "^19.2.5",
- "react-dom": "^19.2.5",
- "typescript": "^6.0.3"
- }
- }
|