{
  "name": "@controlup-ai/mcp",
  "type": "commonjs",
  "version": "1.0.3",
  "license": "UNLICENSED",
  "description": "ControlUp MCP Server",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "cu-mcp": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "start": "npm run build && node dist/index.js",
    "dev": "ts-node src/index.ts",
    "prepublishOnly": "npm run build",
    "watch": "tsc --watch",
    "clean": "rm -rf dist",
    "bundle": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/bundle.js --external:bufferutil --external:utf-8-validate",
    "pack": "npm run bundle && pkg dist/bundle.js --targets node18-win-x64,node18-linux-x64,node18-macos-x64 --output dist/cu-mcp"
  },
  "keywords": [
    "mcp",
    "dex",
    "controlup"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.3",
    "axios": "^1.13.4",
    "dotenv": "^17.2.3",
    "typescript": "^5.9.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/axios": "^0.14.4",
    "@types/node": "^24.10.9",
    "esbuild": "^0.27.2",
    "nodemon": "^3.1.11",
    "pkg": "^5.8.1",
    "ts-node": "^10.9.2"
  },
  "pkg": {
    "scripts": [
      "dist/**/*.js"
    ],
    "assets": [
      "dist/**/*.json"
    ],
    "targets": [
      "node18-win-x64",
      "node18-linux-x64",
      "node18-macos-x64"
    ],
    "outputPath": "dist"
  }
}
