{
  "name": "@modyo/mcp",
  "version": "0.5.1",
  "description": "Unified Modyo MCP Server - Model Context Protocol server for Modyo platform",
  "type": "module",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "bin": {
    "modyo-mcp": "build/index.js"
  },
  "files": [
    "build",
    "docs"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "node build/index.js",
    "dev": "tsx watch src/index.ts",
    "build": "tsc && tsc-alias && chmod +x build/index.js",
    "test": "vitest",
    "test:run": "vitest --run",
    "test:integration": "INTEGRATION_TESTS=1 vitest run integration.test",
    "test:coverage": "vitest --run --coverage",
    "clean": "rm -rf build tsconfig.tsbuildinfo",
    "lint": "biome check",
    "lint:fix": "biome check --write",
    "format": "biome format --write ./",
    "prepare": "husky",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@file-type/xml": "^1.1.1",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@modyo/widget-validator": "0.2.0",
    "archiver": "^7.0.1",
    "file-type": "^22.0.1",
    "pino": "^10.3.1",
    "zod": "^4.3.6"
  },
  "overrides": {
    "hono": "^4.12.14"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.13",
    "@types/archiver": "^7.0.0",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.5",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "pino-pretty": "^13.1.3",
    "strtok3": "^10.3.5",
    "tsc-alias": "^1.8.16",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5",
    "zod-to-json-schema": "^3.25.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/modyo/modyo-mcp-server.git"
  },
  "contributors": [
    {
      "name": "Modyo Team",
      "email": "info@modyo.com"
    }
  ],
  "keywords": [
    "modyo",
    "mcp",
    "model-context-protocol",
    "content",
    "channels",
    "customers",
    "headless-cms"
  ],
  "license": "SEE LICENSE IN LICENSE.md",
  "author": "Modyo Team (https://modyo.com/)",
  "engines": {
    "node": ">=22.0.0"
  },
  "lint-staged": {
    "*.{ts,tsx,js,jsx}": [
      "biome check --write"
    ],
    "*.{json,md}": [
      "biome format --write"
    ]
  }
}
