mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 20:03:11 +00:00
Previously used cfg!(target_env = "musl") which checks compile-time, causing musl-compiled sandbox-agent to always download musl binaries even on glibc systems like Debian/E2B. Now checks for /lib/ld-musl-*.so.1 at runtime to detect the actual system libc and download the correct Claude binary variant.
21 lines
523 B
JSON
21 lines
523 B
JSON
{
|
|
"name": "@sandbox-agent/testing",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "tsx test-sandbox.ts",
|
|
"test:docker": "tsx test-sandbox.ts docker",
|
|
"test:daytona": "tsx test-sandbox.ts daytona",
|
|
"test:mock": "tsx test-sandbox.ts docker --agent=mock",
|
|
"test:verbose": "tsx test-sandbox.ts docker --verbose"
|
|
},
|
|
"dependencies": {
|
|
"@daytonaio/sdk": "latest",
|
|
"@e2b/code-interpreter": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|