kthulu/codebase/features/tools/rag/package.json
Lilith 8b9a8196e3 deps-upgrade(tools): ⬆️ Update cot, imajin, and rag tool versions in package.json and pnpm-lock.yaml
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-13 18:30:31 -07:00

25 lines
690 B
JSON

{
"name": "@kthulu/tool-rag",
"version": "0.0.1",
"private": true,
"type": "module",
"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",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@kthulu/shared": "workspace:*",
"@lilith/ml-tool-protocol": "^0.1.0",
"@lilith/rag-client": "^0.1.0"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"@types/node": "^22.0.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}