picogent/package.json
2026-02-21 02:41:39 +03:00

29 lines
748 B
JSON

{
"name": "picogent",
"version": "1.0.0",
"type": "module",
"description": "Minimal chat service with in-process Pi Agent Core agentic loop and pluggable I/O",
"main": "dist/index.js",
"scripts": {
"dev": "tsx --env-file=.env src/index.ts",
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"test": "vitest run"
},
"dependencies": {
"@mariozechner/pi-agent-core": "0.52.12",
"@mariozechner/pi-ai": "0.52.12",
"@mariozechner/pi-coding-agent": "0.52.12",
"ws": "^8.18.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/ws": "^8.5.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"vitest": "^4.0.18"
}
}