{
  "name": "chat-bubble-ai",
  "version": "3.1.0",
  "type": "module",
  "description": "A customizable AI chat bubble component for React",
  "keywords": [
    "react",
    "chat",
    "bubble",
    "ai",
    "widget",
    "component",
    "ui",
    "tailwindcss",
    "typescript"
  ],
  "author": "Emmanuel Castillo",
  "license": "MIT",
  "main": "dist/chat-bubble-ai.umd.cjs",
  "module": "dist/chat-bubble-ai.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "import": "./dist/chat-bubble-ai.js",
      "require": "./dist/chat-bubble-ai.umd.cjs"
    },
    "./vanilla": {
      "source": "./src/vanilla/index.ts",
      "types": "./dist/vanilla/index.d.ts",
      "import": "./dist/vanilla/chat-bubble-ai-vanilla.js"
    },
    "./style.css": "./dist/chat-bubble-ai.css",
    "./vanilla/style.css": "./dist/vanilla/chat-bubble-ai-vanilla.css"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "vite",
    "build": "tsc -b && vite build",
    "build:lib": "vite build --mode lib",
    "build:vanilla": "vite build --mode vanilla",
    "build:all": "npm run build:lib && npm run build:vanilla && node -e \"require('fs').copyFileSync('dist/chat-bubble-ai.css', 'dist/vanilla/chat-bubble-ai-vanilla.css')\"",
    "lint": "eslint .",
    "preview": "vite preview"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "dependencies": {},
  "devDependencies": {
    "@eslint/js": "^9.21.0",
    "@types/node": "^25.0.8",
    "@types/react": "^19.0.10",
    "@types/react-dom": "^19.0.4",
    "@vitejs/plugin-react-swc": "^3.8.0",
    "eslint": "^9.21.0",
    "eslint-plugin-react-hooks": "^5.1.0",
    "eslint-plugin-react-refresh": "^0.4.19",
    "globals": "^15.15.0",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "typescript": "~5.7.2",
    "typescript-eslint": "^8.24.1",
    "vite": "^6.2.0",
    "vite-plugin-dts": "^4.5.4"
  }
}