{
  "name": "@cedricziel/aha-mcp",
  "module": "src/index.ts",
  "type": "module",
  "version": "0.6.0",
  "description": "Model Context Protocol (MCP) Server for Aha",
  "private": false,
  "main": "./build/index.js",
  "bin": {
    "aha-mcp": "./build/index.js"
  },
  "files": [
    "build/",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "aha",
    "aha-io",
    "product-management",
    "ai",
    "claude"
  ],
  "author": "Cedric Ziel <cedric@cedric-ziel.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/cedricziel/aha-mcp.git"
  },
  "homepage": "https://github.com/cedricziel/aha-mcp#readme",
  "bugs": {
    "url": "https://github.com/cedricziel/aha-mcp/issues"
  },
  "scripts": {
    "start": "bun run src/index.ts",
    "build": "bun build src/index.ts --outdir build --target node",
    "build:http": "bun build src/server/http-server.ts --outdir build --target node",
    "build:dxt": "bun build src/index.ts --compile --outfile build/index.js --target node",
    "dev": "bun --watch src/index.ts",
    "start:http": "bun run src/server/http-server.ts",
    "dev:http": "bun --watch src/server/http-server.ts",
    "test": "bun test --preload ./test/setup.ts",
    "test:watch": "bun test --watch --preload ./test/setup.ts",
    "prepublishOnly": "bun run build",
    "prepare": "husky",
    "dxt:pack": "dxt pack",
    "docker:build": "docker build -t ghcr.io/cedricziel/aha-mcp .",
    "docker:run": "docker run --rm -e AHA_COMPANY=${AHA_COMPANY} -e AHA_TOKEN=${AHA_TOKEN} ghcr.io/cedricziel/aha-mcp",
    "docker:run:sse": "docker run --rm -p 3001:3001 -e AHA_COMPANY=${AHA_COMPANY} -e AHA_TOKEN=${AHA_TOKEN} ghcr.io/cedricziel/aha-mcp --mode sse",
    "docker:test": "docker run --rm ghcr.io/cedricziel/aha-mcp --help"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "@types/node": "^25.0.6",
    "@types/sqlite3": "^5.1.0",
    "@commitlint/cli": "^20.3.1",
    "@commitlint/config-conventional": "^20.0.0",
    "husky": "^9.1.7"
  },
  "peerDependencies": {
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@cedricziel/aha-js": "1.2.5",
    "@modelcontextprotocol/sdk": "1.25.2",
    "axios": "^1.12.2",
    "cors": "^2.8.5",
    "express": "^4.21.2",
    "sqlite": "^5.1.1",
    "sqlite-vec": "^0.1.6",
    "sqlite3": "^5.1.7",
    "zod": "4.3.5"
  }
}
