Files
agent/package.json
highperfocused 5443cdddbf
Some checks failed
Build and Push Docker Image / build (pull_request) Failing after 1m48s
Add HTTP gateway with streaming chat and multi-client conversation mapping
2026-03-12 11:50:15 +01:00

24 lines
595 B
JSON

{
"name": "moa-agent",
"version": "1.0.0",
"description": "MoA agent powered by pi coding agent SDK",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:single": "RUN_MODE=single node dist/index.js",
"start:gateway": "RUN_MODE=gateway node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.57.1",
"@mariozechner/pi-coding-agent": "^0.57.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.0"
}
}