kthulu/codebase/features/tools/sub-agent/package.json
2026-03-10 01:39:09 -07:00

25 lines
725 B
JSON

{
"name": "@kthulu/tool-sub-agent",
"version": "0.0.1",
"type": "module",
"private": true,
"main": "./dist/index.js",
"exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } },
"scripts": {
"build": "swc src -d dist --strip-leading-paths && tsc --emitDeclarationOnly",
"dev": "swc src -d dist --strip-leading-paths -w",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@kthulu/agent-core": "workspace:*",
"@kthulu/shared": "workspace:*",
"@lilith/ml-tool-protocol": "^0.1.0"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}