61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "@lilith/ml-agent-framework",
|
|
"version": "0.1.0",
|
|
"description": "Reusable agent framework for ML agents - migrated from @venus/agent-core",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^8.5.0",
|
|
"@lilith/ml-agent-claude": "workspace:*",
|
|
"@lilith/ml-agent-core": "workspace:*",
|
|
"@lilith/ml-agent-tts": "workspace:*",
|
|
"@lilith/ml-directory-semantic": "workspace:*",
|
|
"fastify": "^4.29.1",
|
|
"ioredis": "^5.9.1",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"optionalDependencies": {
|
|
"@lilith/ml-agent-knowledge": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@types/node": "^22.19.5",
|
|
"@vitest/coverage-v8": "^2.1.9",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"ml",
|
|
"agent",
|
|
"framework",
|
|
"claude"
|
|
],
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
|
}
|
|
}
|