42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
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:*",
|
|
"@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"
|
|
}
|
|
}
|