2026-03-05 19:08:59 -08:00
|
|
|
{
|
|
|
|
|
"name": "@kthulu/cli",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"bin": {
|
|
|
|
|
"kthulu": "./src/bin/kthulu.ts"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "node --import @swc-node/register/esm-register src/bin/kthulu.ts",
|
|
|
|
|
"build": "swc src -d dist --strip-leading-paths",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@kthulu/shared": "workspace:*",
|
|
|
|
|
"@kthulu/agent-core": "workspace:*",
|
2026-03-06 16:43:05 -08:00
|
|
|
"@kthulu/tool-file-ops": "workspace:*",
|
|
|
|
|
"@kthulu/tool-bash": "workspace:*",
|
|
|
|
|
"@kthulu/tool-git": "workspace:*",
|
2026-03-06 16:51:58 -08:00
|
|
|
"@kthulu/tool-code-search": "workspace:*",
|
|
|
|
|
"@kthulu/tool-lsp": "workspace:*",
|
2026-03-07 23:07:55 -08:00
|
|
|
"@kthulu/tool-sub-agent": "workspace:*",
|
2026-03-08 06:19:40 -07:00
|
|
|
"@kthulu/tool-browser": "workspace:*",
|
2026-03-13 18:25:18 -07:00
|
|
|
"@kthulu/tool-rag": "workspace:*",
|
|
|
|
|
"@kthulu/tool-cot": "workspace:*",
|
|
|
|
|
"@kthulu/tool-imajin": "workspace:*",
|
2026-03-13 20:53:37 -07:00
|
|
|
"@kthulu/tool-mcp-bridge": "workspace:*",
|
2026-03-07 21:57:12 -08:00
|
|
|
"@kthulu/training-feedback": "workspace:*",
|
2026-03-06 17:09:21 -08:00
|
|
|
"@kthulu/training-data-collector": "workspace:*",
|
|
|
|
|
"@kthulu/training-evaluator": "workspace:*",
|
2026-03-10 01:37:07 -07:00
|
|
|
"@lilith/ml-tool-protocol": "^0.1.0",
|
|
|
|
|
"@lilith/ml-session-manager": "^0.1.0",
|
2026-03-10 19:21:04 -07:00
|
|
|
"@kthulu/model-client": "workspace:*",
|
2026-03-10 01:37:07 -07:00
|
|
|
"@lilith/ml-training-data": "^0.1.0",
|
2026-03-08 01:05:54 -08:00
|
|
|
"@lilith/terminal-formatting": "^1.0.0",
|
2026-03-05 19:08:59 -08:00
|
|
|
"chalk": "^5.4.1",
|
|
|
|
|
"commander": "^12.1.0",
|
|
|
|
|
"ora": "^8.2.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@swc-node/register": "^1.11.1",
|
|
|
|
|
"@swc/cli": "^0.6.0",
|
|
|
|
|
"@swc/core": "^1.15.11",
|
|
|
|
|
"@types/node": "^22.0.0",
|
|
|
|
|
"typescript": "^5.8.0",
|
|
|
|
|
"vitest": "^3.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|