mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-18 06:04:09 +00:00
- Add built-in sandbox providers (local, docker, e2b, daytona, vercel, cloudflare) to the TypeScript SDK so users import directly instead of passing client instances - Restructure docs: rename architecture to orchestration-architecture, add new architecture page for server overview, improve getting started flow - Rewrite quickstart to be TypeScript-first with provider CodeGroup and custom provider accordion - Update all examples to use new provider APIs - Update persist drivers and foundry for new SDK surface Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
464 B
JSON
21 lines
464 B
JSON
{
|
|
"name": "@sandbox-agent/example-docker",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@sandbox-agent/example-shared": "workspace:*",
|
|
"dockerode": "latest",
|
|
"get-port": "latest",
|
|
"sandbox-agent": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|