{
  "name": "@restnfeel/agentc-starter-kit-chatbot",
  "version": "1.0.0",
  "description": "A comprehensive React-based chatbot library with RAG (Retrieval Augmented Generation) capabilities",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/index.js"
    },
    "./core": {
      "types": "./dist/core/index.d.ts",
      "import": "./dist/core/esm/index.js",
      "require": "./dist/core/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/esm/index.js",
      "require": "./dist/client/index.js"
    },
    "./admin": {
      "types": "./dist/admin/index.d.ts",
      "import": "./dist/admin/esm/index.js",
      "require": "./dist/admin/index.js"
    },
    "./hooks": {
      "types": "./dist/hooks/index.d.ts",
      "import": "./dist/hooks/esm/index.js",
      "require": "./dist/hooks/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/esm/index.js",
      "require": "./dist/types/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "import": "./dist/utils/esm/index.js",
      "require": "./dist/utils/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "docs"
  ],
  "scripts": {
    "build": "rollup -c rollup.config.js",
    "build:types": "tsc --emitDeclarationOnly --outDir dist",
    "build:package": "npm run build && npm run build:types",
    "test": "jest --config jest.config.js",
    "test:watch": "jest --config jest.config.js --watch",
    "test:coverage": "jest --config jest.config.js --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/**/*.{ts,tsx}",
    "lint:fix": "eslint src/**/*.{ts,tsx} --fix",
    "release": "node scripts/release.js",
    "release:patch": "node scripts/release.js patch",
    "release:minor": "node scripts/release.js minor",
    "release:major": "node scripts/release.js major",
    "version:patch": "npm version patch --no-git-tag-version",
    "version:minor": "npm version minor --no-git-tag-version",
    "version:major": "npm version major --no-git-tag-version",
    "prepublishOnly": "npm run test && npm run build:package",
    "prepack": "npm run build:package && npm test",
    "version": "npm run build:package && git add -A dist",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "chatbot",
    "rag",
    "ai",
    "react",
    "typescript",
    "openai",
    "supabase",
    "vector-store",
    "document-search",
    "knowledge-base"
  ],
  "author": {
    "name": "RestNFeel Team",
    "email": "contact@restnfeel.com",
    "url": "https://restnfeel.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/restnfeel/agentc-starter-kit.git",
    "directory": "src/lib/chatbot"
  },
  "bugs": {
    "url": "https://github.com/restnfeel/agentc-starter-kit/issues"
  },
  "homepage": "https://github.com/restnfeel/agentc-starter-kit#readme",
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0",
    "next": ">=12.0.0"
  },
  "dependencies": {
    "@supabase/supabase-js": "^2.39.0",
    "lucide-react": "^0.263.1"
  },
  "optionalDependencies": {
    "pdf-parse": "^1.1.1",
    "mammoth": "^1.6.0",
    "rss-parser": "^3.13.0"
  },
  "devDependencies": {
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  }
}
