mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 05:47:31 -04:00
* 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
22 lines
409 B
JSON
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"
|
|
}
|
|
}
|