{
  "name": "@mks2508/coolify-mks-cli-mcp",
  "version": "0.9.0",
  "description": "MCP server and CLI for Coolify deployment management",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "coolify-mcp": "dist/cli/index.js",
    "coolify-mcp-server": "dist/server/stdio.js",
    "coolify-cli": "dist/cli/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./coolify": {
      "types": "./dist/coolify/index.d.ts",
      "import": "./dist/coolify/index.js"
    },
    "./tools": {
      "types": "./dist/tools/index.d.ts",
      "import": "./dist/tools/index.js"
    },
    "./server/stdio": {
      "types": "./dist/server/stdio.d.ts",
      "import": "./dist/server/stdio.js"
    },
    "./server/sse": {
      "types": "./dist/server/sse.d.ts",
      "import": "./dist/server/sse.js"
    },
    "./state": {
      "types": "./dist/cli/coolify-state.d.ts",
      "import": "./dist/cli/coolify-state.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "dev": "bun --watch src/index.ts",
    "dev:mcp": "bun --watch src/server/stdio.ts",
    "dev:sse": "bun --watch src/server/sse.ts",
    "dev:cli": "bun --watch src/cli/index.ts",
    "build": "bun run build:mcp && bun run build:cli",
    "build:mcp": "rolldown --config rolldown.config.ts && tsc --project tsconfig.build.json",
    "build:cli": "bun build ./src/cli/index.ts --outdir ./dist/cli --target node && bun build ./src/server/stdio.ts --outdir ./dist/server --target node && bun build ./src/server/sse.ts --outdir ./dist/server --target node",
    "typecheck": "tsgo --noEmit"
  },
  "dependencies": {
    "@clack/prompts": "^1.2.0",
    "@mks2508/better-logger": "^4.0.0",
    "@mks2508/no-throw": "^0.1.0",
    "@modelcontextprotocol/sdk": "^1.25.2",
    "chalk": "^5.4.1",
    "cli-table3": "^0.6.5",
    "commander": "^12.1.0",
    "diff": "^8.0.4",
    "ora": "^8.1.1",
    "prompts": "^2.4.2",
    "shiki": "^4.0.2"
  },
  "devDependencies": {
    "@types/bun": "^1.3.14",
    "@types/node": "^22.10.5",
    "@types/prompts": "^2.4.9",
    "rolldown": "^1.0.0-beta.58",
    "typescript": "^5.8.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "jsonSchema": [
    {
      "name": ".coolify.json",
      "description": "Coolify deployment configuration",
      "fileMatch": [".coolify.json"],
      "url": "./coolify.json.schema.json"
    }
  ]
}
