mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 13:03:46 +00:00
- Add `sandbox-agent/modal` provider using Modal SDK with node:22-slim image - Add `sandbox-agent/computesdk` provider using ComputeSDK's unified sandbox API - Update Modal and ComputeSDK examples to use new SDK providers - Update Modal and ComputeSDK deploy docs with provider-based examples - Add Modal to quickstart CodeGroup and docs.json navigation - Add provider test entries for Modal and ComputeSDK - Remove old standalone example files (modal.ts, computesdk.ts) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
433 B
JSON
20 lines
433 B
JSON
{
|
|
"name": "@sandbox-agent/example-modal",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"modal": "latest",
|
|
"@sandbox-agent/example-shared": "workspace:*",
|
|
"sandbox-agent": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|