{
  "name": "@agimon-ai/workflow-mcp",
  "version": "0.23.17",
  "description": "MCP server for running GitHub Actions workflows locally",
  "homepage": "https://agimon.ai",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "typescript"
  ],
  "license": "MIT",
  "bin": {
    "workflow-mcp": "./dist/cli.cjs"
  },
  "files": [
    "dist",
    "skills",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./cli": {
      "import": "./dist/cli.mjs",
      "require": "./dist/cli.cjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.29.0",
    "chalk": "5.6.2",
    "commander": "14.0.3",
    "js-yaml": "4.3.1",
    "proper-lockfile": "4.1.2",
    "@agimon-ai/foundation-process-registry": "0.29.17",
    "@agimon-ai/foundation-port-registry": "0.29.17",
    "@agimon-ai/foundation-validator": "0.26.17",
    "@agimon-ai/log-sink-mcp": "0.29.17"
  },
  "peerDependencies": {
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/js-yaml": "4.0.9",
    "@types/node": "25.6.0",
    "@types/proper-lockfile": "4.1.4",
    "tsdown": "0.21.10",
    "typescript": "6.0.3",
    "vitest": "4.1.5",
    "zod": "4.4.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "node --loader ts-node/esm src/cli.ts mcp-serve",
    "build": "tsdown",
    "test": "vitest --run",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit"
  }
}