All checks were successful
Build and Push Docker Image / build (push) Successful in 1m15s
Reviewed-on: MoA/agent#1 Co-authored-by: highperfocused <highperfocused@pm.me> Co-committed-by: highperfocused <highperfocused@pm.me>
24 lines
595 B
JSON
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"
|
|
}
|
|
}
|