kthulu/codebase/features/training/evaluator/package.json
2026-03-10 19:50:50 -07:00

25 lines
706 B
JSON

{
"name": "@kthulu/training-evaluator",
"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"
},
"dependencies": {
"@kthulu/agent-core": "workspace:*",
"@kthulu/shared": "workspace:*",
"@kthulu/training-feedback": "workspace:*",
"@kthulu/model-client": "workspace:*"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}