2026-09-13 10:46:28 +00:00
{
"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" : {
2026-09-13 10:51:43 +00:00
"kilo-loop" : "./kilo-loop" ,
2026-09-13 10:46:28 +00:00
"kilocode-loop" : "./bin/kilocode-loop.mjs"
} ,
"engines" : {
"node" : ">=20"
} ,
"scripts" : {
"start" : "node bin/kilocode-loop.mjs" ,
2026-09-13 10:51:43 +00:00
"loop" : "node bin/kilocode-loop.mjs" ,
2026-09-13 10:46:28 +00:00
"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"
}
}