{
  "name": "@prmichaelsen/eventbrite-mcp",
  "version": "1.0.7",
  "description": "Eventbrite MCP server providing event management and ticketing capabilities",
  "main": "dist/server.js",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/server.d.ts",
      "import": "./dist/server.js"
    },
    "./factory": {
      "types": "./dist/factory.d.ts",
      "import": "./dist/factory.js"
    }
  },
  "bin": {
    "eventbrite-mcp": "./dist/server.js"
  },
  "scripts": {
    "build": "npm run clean && npm run build:types && npm run build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "node esbuild.build.js",
    "watch": "node esbuild.watch.js",
    "start": "node dist/server.js",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "lint": "eslint src --ext .ts",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build",
    "postinstall": "chmod +x dist/server.js 2>/dev/null || true",
    "publish:public": "npm publish --access public"
  },
  "keywords": [
    "mcp",
    "eventbrite",
    "events",
    "ticketing",
    "event-management"
  ],
  "author": "Patrick Michaelsen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/prmichaelsen/eventbrite-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/prmichaelsen/eventbrite-mcp/issues"
  },
  "homepage": "https://github.com/prmichaelsen/eventbrite-mcp#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "dotenv": "^16.3.1"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "esbuild": "^0.25.10",
    "eslint": "^8.55.0",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
