sandbox-agent/examples/e2b/package.json
Nathan Flurry 6d6f6d0272 refactor: split examples into separate packages and update Claude plan mode
- Restructure examples into individual packages per provider (daytona, docker, e2b, vercel) with shared utilities in @sandbox-agent/example-shared
- Make Claude plan mode prompt-only (no longer requires permissionMode=plan)
- Claude now defaults to bypass permission mode
- Add agent_file_edit_flow test for file editing capabilities
- Fix Daytona file permission setting to use executeCommand
2026-01-27 22:50:31 -08:00

17 lines
348 B
JSON

{
"name": "@sandbox-agent/example-e2b",
"private": true,
"type": "module",
"scripts": {
"start": "tsx e2b.ts"
},
"dependencies": {
"@e2b/code-interpreter": "latest",
"@sandbox-agent/example-shared": "workspace:*"
},
"devDependencies": {
"@types/node": "latest",
"tsx": "latest",
"typescript": "latest"
}
}