{
  "name": "@delorenj/mcp-server-trello",
  "mcpName": "io.github.delorenj/mcp-server-trello",
  "version": "1.8.1",
  "description": "An MCP server for Trello boards, powered by Bun for maximum performance.",
  "keywords": [
    "mcp",
    "trello",
    "bun",
    "automation",
    "productivity",
    "model-context-protocol",
    "api",
    "integration",
    "typescript",
    "board-management",
    "task-management",
    "kanban"
  ],
  "author": "Jarad DeLorenzo",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/delorenj/mcp-server-trello.git"
  },
  "bugs": {
    "url": "https://github.com/delorenj/mcp-server-trello/issues"
  },
  "homepage": "https://github.com/delorenj/mcp-server-trello#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.24.3",
    "axios": "^1.13.2",
    "https-proxy-agent": "^7.0.6",
    "form-data": "^4.0.5",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@ai-sdk/openai": "^1.3.24",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "@vitest/coverage-v8": "4.1.10",
    "bun-types": "latest",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-prettier": "^5.5.4",
    "mcp-evals": "^1.0.18",
    "prettier": "^3.7.4",
    "terser": "^5.44.1",
    "typescript": "^5.9.3",
    "vitest": "4.1.10"
  },
  "files": [
    "build/**/*"
  ],
  "bin": {
    "mcp-server-trello": "build/index.js"
  },
  "type": "module",
  "engines": {
    "bun": ">=1.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "bun build src/index.ts --outdir ./build --target node --format esm",
    "build:types": "tsc --emitDeclarationOnly",
    "build:prod": "npm run build",
    "typecheck": "tsc --noEmit",
    "dev": "bun --watch src/index.ts",
    "versionbump": "bun ./scripts/versionbump.js",
    "versionbump:patch": "bun run versionbump --patch",
    "versionbump:minor": "bun run versionbump --minor",
    "versionbump:major": "bun run versionbump --major",
    "test": "vitest run",
    "test:unit": "vitest run tests/unit",
    "test:smoke": "vitest run tests/smoke",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "release": "bun run build && npm publish"
  }
}
