45 lines
1.3 KiB
JSON
45 lines
1.3 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/tool-sub-agent": "workspace:*",
|
|
"@kthulu/training-feedback": "workspace:*",
|
|
"@kthulu/training-data-collector": "workspace:*",
|
|
"@kthulu/training-evaluator": "workspace:*",
|
|
"@kthulu/training-data": "workspace:*",
|
|
"@lilith/terminal-formatting": "^1.0.0",
|
|
"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"
|
|
}
|
|
}
|