mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 22:03:48 +00:00
- daytona.ts (default): Installs sandbox-agent at runtime. Faster to start but installs on each run. Use for quick testing. - daytona-with-snapshot.ts: Builds custom image with sandbox-agent pre-installed. Slow first run (~2-3 min) but fast subsequent runs. Use for repeated development. Run with: pnpm start (default) or pnpm start:snapshot
19 lines
444 B
JSON
19 lines
444 B
JSON
{
|
|
"name": "@sandbox-agent/example-daytona",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx src/daytona.ts",
|
|
"start:snapshot": "tsx src/daytona-with-snapshot.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@daytonaio/sdk": "latest",
|
|
"@sandbox-agent/example-shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|