adding vercel sandbox with examples and docs (#47)

This commit is contained in:
Maky 2026-02-02 02:05:38 -05:00 committed by GitHub
parent e3c030f66d
commit 63cef16adf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 517 additions and 29 deletions

View file

@ -0,0 +1,20 @@
{
"name": "@sandbox-agent/example-vercel",
"private": true,
"type": "module",
"scripts": {
"start": "tsx src/vercel.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vercel/sandbox": "latest",
"@sandbox-agent/example-shared": "workspace:*",
"sandbox-agent": "workspace:*"
},
"devDependencies": {
"@types/node": "latest",
"tsx": "latest",
"typescript": "latest",
"vitest": "^3.0.0"
}
}