CoolFace
Apppublic

Hanzo-Community/ai-chat

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
package.json58 linesDownload Raw Back to root
1{2  "name": "@hanzo/template-ai-chat-interface",3  "version": "1.0.0",4  "description": "Modern chat UI with streaming responses",5  "repository": {6    "type": "git",7    "url": "https://github.com/hanzoai/template-ai-chat-interface"8  },9  "scripts": {10    "dev": "next dev -H 0.0.0.0 -p 3000",11    "build": "next build",12    "start": "next start -H 0.0.0.0 -p 3000",13    "lint": "next lint",14    "preview": "vite preview",15    "ci": "npm ci --legacy-peer-deps"16  },17  "dependencies": {18    "next": "14.2.5",19    "react": "^18.3.1",20    "react-dom": "^18.3.1",21    "lucide-react": "^0.400.0",22    "clsx": "^2.1.1",23    "tailwind-merge": "^2.3.0",24    "class-variance-authority": "^0.7.0",25    "@radix-ui/react-accordion": "^1.1.2",26    "@radix-ui/react-alert-dialog": "^1.0.5",27    "@radix-ui/react-aspect-ratio": "^1.0.3",28    "@radix-ui/react-avatar": "^1.0.4",29    "@radix-ui/react-checkbox": "^1.0.4",30    "@radix-ui/react-dialog": "^1.0.5",31    "@radix-ui/react-dropdown-menu": "^2.0.6",32    "@radix-ui/react-label": "^2.0.2",33    "@radix-ui/react-popover": "^1.0.7",34    "@radix-ui/react-progress": "^1.0.3",35    "@radix-ui/react-scroll-area": "^1.0.5",36    "@radix-ui/react-select": "^2.0.0",37    "@radix-ui/react-separator": "^1.0.3",38    "@radix-ui/react-slot": "^1.0.2",39    "@radix-ui/react-switch": "^1.0.3",40    "@radix-ui/react-tabs": "^1.0.4",41    "@radix-ui/react-toggle": "^1.0.3",42    "@radix-ui/react-toggle-group": "^1.0.4",43    "@radix-ui/react-tooltip": "^1.0.7"44  },45  "devDependencies": {46    "@types/node": "^20",47    "@types/react": "^18",48    "@types/react-dom": "^18",49    "autoprefixer": "^10.4.19",50    "eslint": "^8",51    "eslint-config-next": "14.2.5",52    "postcss": "^8.4.39",53    "tailwindcss": "^3.4.4",54    "typescript": "^5",55    "vite": "^5.0.0"56  }57}58