{
  "name": "@edicarlos.lds/businessmap-mcp",
  "version": "1.5.6",
  "description": "Model Context Protocol server for BusinessMap (Kanbanize) integration",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "businessmap-mcp": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "postbuild": "chmod +x dist/index.js",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "watch": "tsx --watch src/index.ts",
    "test": "jest",
    "test:npx": "bash scripts/test-npx.sh",
    "publish:npm": "bash scripts/publish-npm.sh",
    "publish:github": "bash scripts/publish-github.sh",
    "preview:release": "bash scripts/preview-release-notes.sh",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "clean": "rm -rf dist",
    "setup": "bash scripts/setup.sh",
    "test:connection": "bash scripts/test-connection.sh",
    "docker:build": "docker build -t businessmap-mcp .",
    "docker:run": "docker run --env-file .env businessmap-mcp",
    "docker:up": "docker-compose up -d",
    "docker:down": "docker-compose down",
    "docker:logs": "docker-compose logs -f businessmap-mcp",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "businessmap",
    "kanbanize",
    "api",
    "integration"
  ],
  "author": "Edicarlos Lopes <edicarloslds@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/edicarloslds/businessmap-mcp.git"
  },
  "homepage": "https://github.com/edicarloslds/businessmap-mcp#readme",
  "bugs": {
    "url": "https://github.com/edicarloslds/businessmap-mcp/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.0",
    "axios": "^1.6.0",
    "dotenv": "^16.3.1",
    "zod": "^3.22.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
