kthulu/codebase/@packages/agent-core/package.json

45 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "@kthulu/agent-core",
"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",
"dev": "tsc --watch",
"test": "vitest run"
},
"dependencies": {
"@kthulu/shared": "workspace:*",
"@lilith/ml-agent-loop": "^0.1.4",
"@lilith/ml-tool-protocol": "^0.1.1",
"@lilith/ml-training-data": "^0.1.0",
"@lilith/flight-recorder": "^0.1.0",
"@lilith/text-processing-utils": "^1.3.8",
"@lilith/spellchecker-wasm": "^1.0.3"
},
"peerDependencies": {
"@lilith/typeorm-entities": "^1.0.38",
"typeorm": "^0.3.0"
},
"peerDependenciesMeta": {
"@lilith/typeorm-entities": { "optional": true },
"typeorm": { "optional": true }
},
"devDependencies": {
"@lilith/typeorm-entities": "^1.0.38",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"typeorm": "^0.3.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}