{
  "name": "@peleke.s/comfyui-mcp",
  "version": "1.0.1",
  "description": "40-tool MCP server for ComfyUI: image generation, ControlNet, IP-Adapter, inpainting, TTS voice cloning, lip-sync video, and AnimateDiff — with smart prompt optimization across 6 model families (Flux, SDXL, SD1.5, Illustrious, Pony, Realistic).",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "comfyui-mcp": "dist/index.js",
    "comfyui-mcp-serve": "dist/http-server.js"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "!dist/**/*.test.js",
    "!dist/**/*.test.d.ts",
    "!dist/__mocks__",
    "!dist/e2e",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Peleke/comfyui-mcp.git"
  },
  "homepage": "https://github.com/Peleke/comfyui-mcp",
  "bugs": {
    "url": "https://github.com/Peleke/comfyui-mcp/issues"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "keywords": [
    "mcp",
    "comfyui",
    "stable-diffusion",
    "image-generation",
    "flux",
    "sdxl",
    "controlnet",
    "ip-adapter",
    "inpainting",
    "tts",
    "voice-cloning",
    "lip-sync",
    "animatediff",
    "ai-art",
    "model-context-protocol",
    "claude",
    "anthropic"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:e2e": "RUN_E2E=true vitest run src/tools/e2e.test.ts --reporter=verbose",
    "e2e:smoke": "tsx src/e2e/smoke-test.ts",
    "e2e:gpu": "tsx src/e2e/gpu-pipeline.ts",
    "serve": "node dist/http-server.js",
    "serve:dev": "tsx src/http-server.ts"
  },
  "dependencies": {
    "@google-cloud/storage": "^7.14.0",
    "@hono/node-server": "^1.19.8",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@supabase/storage-js": "^2.90.1",
    "@supabase/supabase-js": "^2.45.0",
    "@upstash/ratelimit": "^2.0.7",
    "@upstash/redis": "^1.36.1",
    "hono": "^4.11.3",
    "quirrel": "^1.14.1",
    "sharp": "^0.34.5",
    "ws": "^8.18.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@types/sharp": "^0.31.1",
    "@types/ws": "^8.5.13",
    "@vitest/coverage-v8": "^4.0.16",
    "tsx": "^4.19.0",
    "typescript": "^5.7.0",
    "vitest": "^4.0.16"
  }
}
