kthulu/codebase/@packages/agent-core/package.json
Lilith e2563de784 deps-upgrade(agent-core): ⬆️ Update dependencies to latest stable versions in agent-core
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 06:07:54 -07:00

30 lines
780 B
JSON

{
"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 && cp src/agent-definitions/predefined/*.md dist/agent-definitions/predefined/",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"test": "vitest run"
},
"dependencies": {
"@kthulu/shared": "workspace:*",
"@kthulu/tool-protocol": "workspace:*",
"@kthulu/model-client": "workspace:*"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}