Files
zerobyte/apps/agent/package.json
Nico 28ba8657f9 feat(runtime): start and ship the local agent (#767)
* feat(runtime): start and ship the local agent

* refactor: gate local agent behind feature flag

* chore: skip agent manager if flag is false

* fix: hot reload agents

* test: fix config tests
2026-04-10 00:00:30 +02:00

22 lines
409 B
JSON

{
"name": "agent",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"tsc": "tsc --noEmit",
"test": "bunx --bun vitest run --config ./vitest.config.ts"
},
"dependencies": {
"@zerobyte/contracts": "workspace:*",
"@zerobyte/core": "workspace:*",
"effect": "^3.18.4"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^6"
}
}