{
  "name": "@ynzys/mcp-banana",
  "mcpName": "io.github.ynzys/mcp-banana",
  "version": "1.0.1",
  "description": "MCP server for AI image generation with multi-image support",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "mcp-banana": "./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",
    "agent-skills",
    "skills"
  ],
  "author": "Shinsuke Kagawa",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ynzys/mcp-banana.git"
  },
  "files": [
    "dist/**/*",
    "!dist/**/*.test.js",
    "!dist/**/*.test.d.ts",
    "!dist/__tests__",
    "!dist/tests",
    "bin",
    "skills"
  ],
  "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:deps": "madge --circular --extensions ts src",
    "check:all": "npm run check && npm run lint && npm run format:check && 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.42.0",
    "@modelcontextprotocol/sdk": "^1.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.6",
    "@types/node": "^25.3.5",
    "@vitest/coverage-v8": "^4.0.18",
    "@vitest/ui": "^4.0.18",
    "husky": "^9.1.7",
    "lint-staged": "^16.3.2",
    "madge": "^8.0.0",
    "tsc-alias": "^1.8.16",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=20"
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "biome check --write --no-errors-on-unmatched",
      "biome format --write --no-errors-on-unmatched"
    ]
  }
}
