Files
agent/package.json
highperfocused 089bd7bd48
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m15s
Add HTTP gateway with streaming chat and multi-client conversation mapping (#1)
Reviewed-on: MoA/agent#1
Co-authored-by: highperfocused <highperfocused@pm.me>
Co-committed-by: highperfocused <highperfocused@pm.me>
2026-03-12 14:47:45 +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"
}
}