{
  "name": "@ai-development-environment/control-agent",
  "version": "0.0.94",
  "description": "Control agent for the AI Development Environment",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bludesign/ai-development-environment.git",
    "directory": "packages/control-agent"
  },
  "type": "module",
  "engines": {
    "node": ">=24.16.0 <25"
  },
  "bin": {
    "control-agent": "dist/control-agent.js"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "0.3.216",
    "@openai/codex-sdk": "0.144.6",
    "@opencode-ai/sdk": "1.18.4",
    "ws": "8.21.1"
  },
  "scripts": {
    "build": "node esbuild.config.mjs",
    "smoke": "node dist/control-agent.js --help",
    "prepublishOnly": "npm run build",
    "dev": "node --watch --watch-preserve-output --import tsx src/index.ts dev",
    "format": "prettier --write --ignore-path ../../.gitignore --ignore-path ../../.prettierignore .",
    "format:check": "prettier --check --ignore-path ../../.gitignore --ignore-path ../../.prettierignore .",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "type-check": "tsc --noEmit -p tsconfig.json",
    "test": "vitest",
    "test:run": "vitest run",
    "full-check": "npm run format && npm run lint:fix && npm run type-check && npm run test:run && npm run build && npm run smoke",
    "full-check:ci": "npm run format:check && npm run lint && npm run type-check && npm run test:run && npm run build && npm run smoke",
    "full-check:dev": "npm run full-check && npm run dev",
    "upgrade": "ncu -u --cooldown 48h && npm install",
    "upgrade:check": "ncu --cooldown 48h"
  },
  "devDependencies": {
    "@ai-development-environment/agent-contract": "*",
    "@types/node": "^24",
    "@types/ws": "8.18.1",
    "esbuild": "0.28.1",
    "eslint": "^9",
    "eslint-config-next": "16.2.10",
    "graphql": "16.0.0",
    "graphql-ws": "6.1.0",
    "npm-check-updates": "22.2.9",
    "prettier": "3.9.5",
    "tsx": "4.23.1",
    "typescript": "^6",
    "vitest": "4.1.10"
  }
}
