kthulu/codebase/apps/cli/package.json
2026-03-06 17:09:21 -08:00

42 lines
1.2 KiB
JSON

{
"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:*",
"@kthulu/model-client": "workspace:*",
"@kthulu/tool-protocol": "workspace:*",
"@kthulu/session-manager": "workspace:*",
"@kthulu/tool-file-ops": "workspace:*",
"@kthulu/tool-bash": "workspace:*",
"@kthulu/tool-git": "workspace:*",
"@kthulu/tool-code-search": "workspace:*",
"@kthulu/tool-lsp": "workspace:*",
"@kthulu/training-data-collector": "workspace:*",
"@kthulu/training-evaluator": "workspace:*",
"@kthulu/training-data": "workspace:*",
"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"
}
}