agent-r/package.json

31 lines
843 B
JSON

{
"name": "agent-r",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Autonomous multi-agent Codex orchestrator with strategy, implementation, and checking roles.",
"bin": {
"agent-r": "dist/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"dev": "NODE_OPTIONS=--disable-warning=ExperimentalWarning tsx src/index.ts",
"lint": "tsc -p tsconfig.json --noEmit",
"test": "NODE_OPTIONS=--disable-warning=ExperimentalWarning vitest run"
},
"dependencies": {
"@openai/codex-sdk": "^0.118.0",
"ajv": "^8.18.0",
"commander": "^14.0.3",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@types/node": "^24.7.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}