{
  "name": "@iflow-mcp/mcp-image",
  "mcpName": "io.github.shinpr/mcp-image",
  "version": "0.5.1",
  "description": "MCP server for AI image generation",
  "main": "dist/index.js",
  "bin": {
    "@iflow-mcp/mcp-image": "./dist/index.js"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "model-context-protocol",
    "image-generation",
    "generative-ai",
    "image-editing",
    "prompt-enhancement",
    "gemini",
    "google-ai",
    "nano-banana",
    "claude-code",
    "cursor",
    "codex",
    "typescript"
  ],
  "author": "Shinsuke Kagawa",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/shinpr/mcp-image.git"
  },
  "files": [
    "dist/**/*",
    "!dist/**/*.test.js",
    "!dist/**/*.test.d.ts",
    "!dist/__tests__",
    "!dist/tests"
  ],
  "scripts": {
    "build": "tsc && tsc-alias",
    "link": "npm run build && npm link",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:coverage:summary": "node scripts/show-coverage.js",
    "test:coverage:clean": "rm -rf coverage .vitest-cache",
    "test:coverage:fresh": "npm run test:coverage:clean && npm run test:coverage",
    "test:watch": "vitest",
    "format": "biome format --write src",
    "format:check": "biome format src",
    "lint": "biome lint src",
    "lint:fix": "biome lint --write src",
    "check": "biome check src",
    "check:fix": "biome check --write src",
    "check:unused": "ts-prune --project tsconfig.json --ignore 'src/index.ts|__tests__|test|vitest'",
    "check:deps": "madge --circular --extensions ts src",
    "check:all": "npm run check && npm run lint && npm run format:check && npm run check:unused && npm run check:deps && npm run build && npm run test",
    "cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
    "test:safe": "npm test && npm run cleanup:processes"
  },
  "dependencies": {
    "@google/genai": "^1.30.0",
    "@modelcontextprotocol/sdk": "^1.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@testing-library/jest-dom": "^6.6.3",
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "c8": "^10.1.3",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.0",
    "madge": "^8.0.0",
    "ts-node": "^10.9.1",
    "ts-prune": "^0.10.3",
    "tsc-alias": "^1.8.7",
    "tsx": "^4.19.4",
    "typescript": "^5.0.0",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=20"
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "biome check --write --no-errors-on-unmatched",
      "biome format --write --no-errors-on-unmatched"
    ]
  }
}
