mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 08:03:46 +00:00
- 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
17 lines
356 B
JSON
17 lines
356 B
JSON
{
|
|
"name": "@sandbox-agent/example-vercel",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx vercel-sandbox.ts"
|
|
},
|
|
"dependencies": {
|
|
"@vercel/sandbox": "latest",
|
|
"@sandbox-agent/example-shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|