110 lines
3.6 KiB
JSON
110 lines
3.6 KiB
JSON
{
|
|
"name": "e2b",
|
|
"version": "2.32.0",
|
|
"description": "E2B SDK that give agents cloud environments",
|
|
"homepage": "https://e2b.dev",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "FoundryLabs, Inc.",
|
|
"email": "hello@e2b.dev",
|
|
"url": "https://e2b.dev"
|
|
},
|
|
"bugs": "https://github.com/e2b-dev/e2b/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/e2b-dev/e2b",
|
|
"directory": "packages/js-sdk"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"sideEffects": false,
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"prepublishOnly": "pnpm build",
|
|
"build": "tsc --noEmit && tsdown",
|
|
"dev": "tsdown --watch",
|
|
"example": "tsx example.mts",
|
|
"test": "vitest run",
|
|
"generate": "npm-run-all generate:* && pnpm run format",
|
|
"generate:api": "python ./../../spec/remove_extra_tags.py sandboxes snapshots templates tags auth volumes && openapi-typescript ../../spec/openapi_generated.yml -x api_key --array-length --alphabetize --default-non-nullable false --output src/api/schema.gen.ts",
|
|
"generate:envd": "cd ../../spec/envd && buf generate --template buf-js.gen.yaml\n",
|
|
"generate:envd-api": "openapi-typescript ../../spec/envd/envd.yaml -x api_key --array-length --alphabetize --output src/envd/schema.gen.ts",
|
|
"generate:volume-api": "openapi-typescript ../../spec/openapi-volumecontent.yml -x api_key --array-length --alphabetize --output src/volume/schema.gen.ts",
|
|
"generate:mcp": "json2ts -i ./../../spec/mcp-server.json -o src/sandbox/mcp.d.ts --unreachableDefinitions --style.singleQuote --no-style.semi",
|
|
"check-deps": "knip",
|
|
"pretest": "npx playwright install --with-deps chromium",
|
|
"postPublish": "./scripts/post-publish.sh || true",
|
|
"test:bun": "bun test tests/runtimes/bun --env-file=.env",
|
|
"test:deno": "deno test tests/runtimes/deno/ --allow-net --allow-read --allow-env --unstable-sloppy-imports --trace-leaks",
|
|
"test:integration": "E2B_INTEGRATION_TEST=1 vitest run tests/integration/**",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "oxlint --config ../../.oxlintrc.json src tests",
|
|
"format": "prettier --write src/ tests/ example.mts"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.2.0",
|
|
"@types/node": "^20.19.19",
|
|
"@types/platform": "^1.3.6",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-dom": "^19.2.0",
|
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"@vitest/browser": "^4.1.0",
|
|
"@vitest/browser-playwright": "^4.1.0",
|
|
"dotenv": "^16.4.5",
|
|
"json-schema-to-typescript": "^15.0.4",
|
|
"knip": "^5.43.6",
|
|
"msw": "^2.12.10",
|
|
"npm-run-all": "^4.1.5",
|
|
"openapi-typescript": "^7.9.1",
|
|
"playwright": "^1.55.1",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"tsdown": "^0.22.3",
|
|
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
"vitest": "^4.1.8",
|
|
"vitest-browser-react": "^2.2.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"keywords": [
|
|
"e2b",
|
|
"ai-agents",
|
|
"agents",
|
|
"ai",
|
|
"code-interpreter",
|
|
"sandbox",
|
|
"code",
|
|
"runtime",
|
|
"vm",
|
|
"nodejs",
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
"dependencies": {
|
|
"@bufbuild/protobuf": "^2.12.1",
|
|
"@connectrpc/connect": "^2.1.2",
|
|
"@connectrpc/connect-web": "^2.1.2",
|
|
"chalk": "^5.3.0",
|
|
"compare-versions": "^6.1.0",
|
|
"dockerfile-ast": "^0.7.1",
|
|
"glob": "^11.1.0",
|
|
"openapi-fetch": "^0.14.1",
|
|
"platform": "^1.3.6",
|
|
"tar": "^7.5.16",
|
|
"undici": "^7.28.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.18.1 <21 || >=22"
|
|
},
|
|
"browserslist": [
|
|
"defaults"
|
|
]
|
|
}
|