kilo-loop/package.json
2026-09-13 13:46:28 +03:00

22 lines
616 B
JSON

{
"name": "kilocode-loop",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Goal-driven autonomous loop runner for the Kilo CLI, with a live Express dashboard, per-iteration reports and human-in-the-loop control.",
"bin": {
"kilocode-loop": "./bin/kilocode-loop.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node bin/kilocode-loop.mjs",
"dry": "node bin/kilocode-loop.mjs --dry-run --goal examples/goal.example.json --iterations 5 --port 7999",
"test": "node --test test/*.test.mjs"
},
"dependencies": {
"express": "^5.1.0"
}
}