{
  "name": "cagent",
  "version": "1.0.7",
  "description": "It writes code, runs it, reads the output, and iterates.",
  "license": "MIT",
  "author": "stepan.rutz",
  "type": "module",
  "main": "/dist/agent.js",
  "engines": {
    "node": ">=22.0.0"
  },
  "files": [
    "dist/",
    "package.json"
  ],
  "bin": {
    "cagent": "dist/agent.js"
  },
  "scripts": {
    "prepublishOnly": "tsc && chmod +x dist/agent.js",
    "build": "tsc && chmod +x dist/agent.js",
    "start": "node dist/agent.js",
    "dev": "npx tsx src/agent.ts",
    "check": "npx tsc --noEmit",
    "lint": "npx @biomejs/biome lint ./src",
    "format": "npx @biomejs/biome format --write ./src",
    "fix": "npx @biomejs/biome check --write ./src",
    "install-global": "npm run build && npm link",
    "uninstall-global": "npm unlink -g customagent"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.9",
    "@types/node": "^25.5.0",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2"
  },
  "dependencies": {
    "@types/react": "^19.2.14",
    "ink": "^6.8.0",
    "react": "^19.2.4",
    "readline": "^1.3.0",
    "zod": "^4.3.6"
  }
}
