{
  "name": "ai-vision-mcp",
  "version": "0.0.7",
  "description": "Vision MCP server that provides AI-powered image and video analysis using Google Gemini and Vertex AI",
  "main": "dist/index.js",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "prepare": "npm run build",
    "check:imagescript": "node -e \"import('imagescript').then(()=>console.error('imagescript:ok')).catch(e=>{console.error('imagescript:fail'); console.error(e&&e.message||e); process.exit(1);})\"",
    "doctor": "npm run check:imagescript",
    "prepublishOnly": "npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "publish-registry": "mcp-publisher publish",
    "publish-registry:dry-run": "mcp-publisher publish --dry-run",
    "test": "vitest run",
    "test:e2e": "vitest run tests/e2e",
    "test:e2e:protocol": "vitest run tests/e2e/protocol.test.ts",
    "test:e2e:ci": "vitest run tests/e2e/protocol.test.ts tests/e2e/validation.test.ts",
    "test:e2e:cli": "vitest run tests/e2e/cli.test.ts",
    "test:watch": "vitest watch"
  },
  "keywords": [
    "mcp",
    "vision",
    "ai",
    "image-analysis",
    "video-analysis",
    "gemini",
    "vertex-ai",
    "google-ai"
  ],
  "author": "Tan Yong Sheng <tys203831@gmail.com>",
  "license": "MIT",
  "bin": {
    "ai-vision-mcp": "dist/index.js",
    "ai-vision": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/tan-yong-sheng/ai-vision-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/tan-yong-sheng/ai-vision-mcp/issues"
  },
  "homepage": "https://github.com/tan-yong-sheng/ai-vision-mcp#readme",
  "dependencies": {
    "@google-cloud/storage": "^7.19.0",
    "@google/genai": "^1.24.0",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "dotenv": "^16.4.5",
    "imagescript": "^1.3.0",
    "mime-types": "^2.1.35",
    "node-fetch": "^3.3.2",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/html-to-text": "^9.0.4",
    "@types/http-cache-semantics": "^4.0.4",
    "@types/mime-types": "^2.1.4",
    "@types/node": "^20.14.0",
    "@types/phoenix": "^1.6.6",
    "@types/ws": "^8.18.1",
    "@types/yauzl": "^2.10.3",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "@vitest/coverage-v8": "^4.0.18",
    "depcheck": "^1.4.7",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-prettier": "^5.5.4",
    "knip": "^5.83.1",
    "prettier": "^3.3.2",
    "ts-prune": "^0.10.3",
    "typescript": "^5.5.0",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
