{
  "name": "ccat-api",
  "description": "API Client to communicate with the Cheshire Cat AI",
  "license": "MIT",
  "version": "0.12.1",
  "author": "zAlweNy26",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**"
  ],
  "keywords": [
    "ccat",
    "cheshire-cat",
    "api",
    "client",
    "fastapi",
    "openapi",
    "ai",
    "llm",
    "chat",
    "bot"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/zAlweNy26/ccat-api.git"
  },
  "bugs": {
    "url": "https://github.com/zAlweNy26/ccat-api/issues"
  },
  "homepage": "https://github.com/zAlweNy26/ccat-api",
  "devDependencies": {
    "@changesets/cli": "^2.27.11",
    "@types/node": "^22.10.7",
    "@typescript-eslint/eslint-plugin": "^7.16.0",
    "@typescript-eslint/parser": "^7.16.0",
    "eslint": "^8.57.0",
    "openapi-typescript-codegen": "^0.29.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.3.5",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "@types/ws": "^8.5.13",
    "axios": "^1.7.9",
    "form-data": "^4.0.1",
    "isomorphic-ws": "^5.0.0",
    "ws": "^8.18.0"
  },
  "scripts": {
    "build": "tsup index.ts --format cjs,esm --dts",
    "release": "pnpm run build && changeset publish",
    "lint": "eslint . --ext .js,.ts --fix --ignore-path .gitignore",
    "start": "ts-node index.ts",
    "generate": "openapi --input ./catapi.json --output ./api --client axios --name CCatAPI --useUnionTypes"
  }
}