{
  "name": "vision-analyzer",
  "version": "2.0.5",
  "description": "一个提供精确视觉理解能力的 MCP (Model Context Protocol) 服务器，支持多种视觉分析功能",
  "main": "index.js",
  "bin": {
    "vision-analyzer": "./index.js"
  },
  "files": [
    "index.js",
    "analyze.js",
    "mcp-handler.js",
    "mcp-tools.js",
    "prompt-manager.js",
    "api-validator.js",
    "config-checker.js",
    "config-manager.js",
    "web-config-server.js",
    "start-server.js",
    "response-utils.js",
    "logger.js",
    "debug-logger.js",
    "README.md",
    "LICENSE",
    "package.json",
    "prompts.json",
    "settings.json.example",
    "config/schemas/",
    "lib/",
    "scripts/",
    "config-page.html",
    "manage-page.html",
    "auto-path-config.json",
    "claude-config-template.json",
    "claude-config-examples.json",
    "relative-path-configs.json",
    "claude_desktop_config.json",
    "setup.js"
  ],
  "directories": {
    "test": "test"
  },
  "scripts": {
    "start": "node index.js",
    "start:production": "node scripts/start-production.js",
    "start:dev": "NODE_ENV=development node index.js",
    "setup": "node scripts/setup.js",
    "setup:wizard": "node scripts/setup-wizard.js",
    "pretest": "node scripts/pretest-check.js",
    "test": "jest",
    "test:quiet": "VA_LOG_LEVEL=error jest",
    "test:watch": "jest --watch",
    "test:quick": "node test-mcp.js",
    "test:setup": "node test-initializer.js",
    "test:validate": "node -e \"const TestInitializer = require('./test-initializer'); const t = new TestInitializer('.'); t.initialize().then(r => console.log(r)).catch(e => console.error(e))\"",
    "test:coverage": "VA_LOG_LEVEL=warn jest --coverage",
    "test:debug": "VA_DEBUG=true jest --verbose",
    "test:all": "node scripts/test-all.js",
    "test:run": "node scripts/run-tests.js",
    "test:unit": "node scripts/run-tests.js unit",
    "test:integration": "node scripts/run-tests.js integration",
    "test:mcp": "node scripts/run-tests.js mcp",
    "test:parallel": "node scripts/run-tests.js --parallel true",
    "test:sequential": "node scripts/run-tests.js --parallel false",
    "dev": "VA_LOG_LEVEL=debug node index.js",
    "lint": "jslint lib/**/*.js index.js scripts/**/*.js",
    "lint:fix": "echo 'Auto-fix not available, please run jslint and fix issues manually'",
    "health": "node scripts/health-check.js",
    "metrics": "node scripts/metrics.js",
    "validate:config": "node scripts/validate-config.js",
    "security:check": "node scripts/security-check.js",
    "security:audit": "npm audit && npm audit fix",
    "security:dependencies": "npm ls --depth=1",
    "performance:test": "node scripts/performance-test.js",
    "backup:config": "node scripts/backup-config.js",
    "migrate:config": "node scripts/migrate-config.js"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "vision",
    "image-analysis",
    "ai",
    "llm",
    "visual-analysis",
    "ui-analysis",
    "design-tokens",
    "component-hierarchy"
  ],
  "author": {
    "name": "emu",
    "email": "your-email@example.com"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://gitee.com/emu/vision-analyzer.git"
  },
  "bugs": {
    "url": "https://gitee.com/emu/vision-analyzer/issues"
  },
  "homepage": "https://gitee.com/emu/vision-analyzer",
  "engines": {
    "node": ">=16.0.0"
  },
  "devDependencies": {
    "jest": "^29.7.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.19.1",
    "ajv": "^8.17.1",
    "chokidar": "^4.0.3"
  }
}
