Files
Memoh/agent/package.json
T
Acbox Liu e6d70b523e refactor: divide agent logic and gateway into different package (#90)
* feat: add @memoh/agent

* chore: use @memoh/agent in @memoh-gateway
2026-02-22 02:06:47 +08:00

30 lines
796 B
JSON

{
"name": "@memoh/agent-gateway",
"version": "0.1.0-beta.5",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outfile dist/index.js --target bun --minify",
"start": "pnpm run build && bun run dist/index.js"
},
"dependencies": {
"@memoh/config": "workspace:*",
"@memoh/agent": "workspace:*",
"@elysiajs/bearer": "^1.4.2",
"@elysiajs/cors": "^1.4.1",
"@modelcontextprotocol/sdk": "^1.25.2",
"@mozilla/readability": "^0.6.0",
"@types/jsdom": "^27.0.0",
"@types/turndown": "^5.0.6",
"ai": "^6.0.25",
"elysia": "latest",
"jsdom": "^27.4.0",
"toml": "^3.0.0",
"turndown": "^7.2.2",
"zod": "^4.3.5"
},
"devDependencies": {
"bun-types": "latest"
},
"module": "src/index.js"
}