{
  "name": "@astermind/cybernetic-chatbot-client",
  "version": "2.3.21",
  "type": "module",
  "description": "Offline-capable AI chatbot client with local RAG fallback and agentic capabilities for AsterMind",
  "main": "dist/cybernetic-chatbot-client.umd.js",
  "module": "dist/cybernetic-chatbot-client.esm.js",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/cybernetic-chatbot-client.esm.js",
      "require": "./dist/cybernetic-chatbot-client.umd.js"
    },
    "./full": {
      "types": "./dist/full.d.ts",
      "import": "./dist/cybernetic-chatbot-client-full.esm.js",
      "require": "./dist/cybernetic-chatbot-client-full.umd.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prebuild": "node scripts/bump-version.js",
    "build": "rollup -c",
    "build:clean": "rm -rf dist && npm run build",
    "dev": "rollup -c -w",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest --coverage",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "audit": "npm audit",
    "prerelease": "npm run build:clean && npm run typecheck && npm run test && npm run audit",
    "version:patch": "node scripts/bump-version.js patch",
    "version:minor": "node scripts/bump-version.js minor",
    "version:major": "node scripts/bump-version.js major",
    "prepublishOnly": "npm run typecheck && npm run test && npm run build"
  },
  "dependencies": {
    "@astermind/astermind-community": "^3.0.0",
    "idb": "^7.1.1"
  },
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.0",
    "@rollup/plugin-node-resolve": "^15.0.0",
    "@rollup/plugin-terser": "^0.4.0",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/node": "^20.0.0",
    "@types/react": "^18.0.0",
    "jsdom": "^27.4.0",
    "rollup": "^4.0.0",
    "tslib": "^2.8.1",
    "typescript": "^5.0.0",
    "vitest": "^4.0.17"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "keywords": [
    "chatbot",
    "rag",
    "ai",
    "offline",
    "offline-first",
    "agentic",
    "astermind",
    "cybernetic",
    "indexeddb",
    "cache",
    "streaming",
    "sse",
    "dom-automation",
    "intent-classification",
    "client-sdk"
  ],
  "author": "AsterMind Team",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://astermind.ai"
}
