{
  "name": "react-ai-chat-widget",
  "version": "1.0.1",
  "description": "A plug-and-play React chatbot widget supporting OpenAI, Anthropic, and Mistral AI providers",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./styles": "./dist/chatbot.css"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "typecheck": "tsc --noEmit",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "react",
    "chatbot",
    "ai",
    "openai",
    "anthropic",
    "claude",
    "mistral",
    "gpt",
    "chat",
    "component",
    "typescript"
  ],
  "author": "Abhijeet Satpute",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/abhijeetsatpute/react-ai-chat-widget"
  },
  "bugs": {
    "url": "https://github.com/abhijeetsatpute/react-ai-chat-widget/issues"
  },
  "homepage": "https://github.com/abhijeetsatpute/react-ai-chat-widget#readme",
  "peerDependencies": {
    "react": ">=17.0.0",
    "react-dom": ">=17.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-typescript": "^11.1.6",
    "@testing-library/jest-dom": "^6.4.2",
    "@testing-library/react": "^14.2.1",
    "@types/react": "^18.2.55",
    "@types/react-dom": "^18.2.19",
    "jsdom": "^24.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rollup": "^4.12.0",
    "rollup-plugin-copy": "^3.5.0",
    "rollup-plugin-dts": "^6.1.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "tslib": "^2.6.2",
    "typescript": "^5.3.3",
    "vitest": "^1.3.0"
  }
}