{
  "version": "3.0.0",
  "name": "@zapier/mcp-integration",
  "description": "SDK for using remote Model Context Protocol (MCP) servers in/as Zapier integrations",
  "keywords": [
    "zapier",
    "mcp",
    "integration",
    "model-context-protocol",
    "sdk",
    "cli",
    "ai",
    "llm"
  ],
  "author": "Zapier <partners@zapier.com>",
  "license": "SEE LICENSE IN LICENSE",
  "homepage": "https://docs.zapier.com/platform/home",
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/zapier/team-integrations/mcp-integration.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "package.json"
  ],
  "bin": {
    "mcp-integration": "./dist/cli.js"
  },
  "scripts": {
    "prepare": "npx husky",
    "build": "rm -rf dist && tsc --build && chmod +x dist/cli.js",
    "dev": "npm run build && tsc --watch",
    "type-check": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "test": "vitest --run",
    "test:watch": "vitest",
    "test:coverage": "npm run test -- --coverage",
    "validate": "npm run lint && npm run format && npm run typecheck && npm run test",
    "validate:fix": "npm run lint:fix && npm run format:fix && npm run typecheck && npm run test",
    "pre-commit": "npx lint-staged",
    "changeset": "npx changeset",
    "prepublishOnly": "npm run build",
    "ci:version": "npx changeset version && npm install --package-lock-only",
    "ci:publish": "npm run build && npx changeset publish",
    "cli": "node dist/cli.js"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.5",
    "@eslint/js": "^9.32.0",
    "@types/eslint": "^9.6.1",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^8.39.0",
    "@typescript-eslint/parser": "^8.39.0",
    "@vitest/coverage-v8": "^2.1.9",
    "eslint": "^9.32.0",
    "eslint-config-typescript": "^3.0.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.4",
    "prettier": "^3.6.2",
    "typescript": "^5.9.2",
    "vitest": "^2.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.2",
    "commander": "^14.0.0",
    "dotenv": "^17.2.1",
    "jsonata": "^2.1.0",
    "zod": "^4.0.17"
  },
  "peerDependencies": {
    "zapier-platform-core": "^17.7.0"
  },
  "lint-staged": {
    "*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md}": [
      "prettier --write"
    ]
  }
}
