{
  "name": "plazbot",
  "version": "2.1.4",
  "description": "Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.js",
      "require": "./dist/react/index.js"
    },
    "./workers": {
      "types": "./dist/workers/index.d.ts",
      "import": "./dist/workers/index.js",
      "require": "./dist/workers/index.js"
    }
  },
  "scripts": {
    "build": "npm run build:core && npm run build:react && npm run build:workers",
    "build:core": "tsc -p tsconfig.json",
    "build:react": "tsc -p tsconfig.react.json",
    "build:workers": "tsc -p tsconfig.workers.json",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "release": "npm version patch && npm publish"
  },
  "author": "Kristian Garcia",
  "license": "MIT",
  "keywords": [
    "plazbot",
    "sdk",
    "ia",
    "whatsapp",
    "ai-agents",
    "chatbot",
    "typescript",
    "react",
    "workers"
  ],
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/plazbot/plazbot-sdk.git"
  },
  "devDependencies": {
    "@types/axios": "^0.9.36",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "typescript": "^5.3.0"
  },
  "dependencies": {
    "axios": "^1.9.0"
  },
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  }
}
