* feat(agent): add standalone agent runtime * fix(backups): bridge local executor to Effect restic API * fix(agent): add Bun and DOM types to agent tsconfig * refactor: wrap backup error in a tagged effect error * fix: pr feedbacks
20 lines
346 B
JSON
20 lines
346 B
JSON
{
|
|
"name": "agent",
|
|
"private": true,
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"scripts": {
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@zerobyte/contracts": "workspace:*",
|
|
"@zerobyte/core": "workspace:*",
|
|
"effect": "^3.18.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^6"
|
|
}
|
|
}
|