UNPKG

e2b

Version:

E2B SDK that give agents cloud environments

115 lines 4.14 kB
{ "name": "e2b", "version": "2.45.0", "description": "E2B SDK that give agents cloud environments", "homepage": "https://e2b.dev/?utm_source=npm&utm_medium=referral&utm_campaign=package_homepage&utm_content=e2b", "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", "devDependencies": { "@cloudflare/vitest-pool-workers": "^0.18.7", "@redocly/cli": "2.39.0", "@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.10", "@vitest/browser-playwright": "^4.1.10", "dotenv": "^16.4.5", "error-stack-parser-es": "^2.0.1", "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.10", "vitest-browser-react": "^2.2.0", "wrangler": "^4.113.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": "^13.0.6", "openapi-fetch": "^0.14.1", "platform": "^1.3.6", "tar": "^7.5.19", "undici": "^7.29.0" }, "optionalDependencies": { "undici8": "npm:undici@8.10.0" }, "engines": { "node": ">=20.18.1 <21 || >=22" }, "browserslist": [ "defaults" ], "scripts": { "build": "tsc --noEmit && tsdown", "dev": "tsdown --watch", "example": "tsx example.mts", "test": "vitest run", "generate": "npm-run-all generate:* && pnpm run format", "generate:api": "redocly bundle js-sdk --config ../../redocly.yaml -o ../../spec/openapi_generated.js-sdk.yml && openapi-typescript ../../spec/openapi_generated.js-sdk.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": "redocly bundle envd --config ../../redocly.yaml -o ../../spec/openapi_generated.envd.yml && openapi-typescript ../../spec/openapi_generated.envd.yml -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", "playwright:install": "playwright install chromium", "test:bun": "bunx --bun vitest run --project unit --project connectionConfig --project template", "test:cf": "vitest run --config tests/runtimes/cloudflare/vitest.config.mts", "test:cf:deploy": "vitest run --config tests/runtimes/cloudflare-deploy/vitest.config.mts", "test:deno": "deno run -A npm:vitest run --project unit --project connectionConfig --project template", "typecheck": "tsc --noEmit", "lint": "oxlint --config ../../.oxlintrc.json src tests", "format": "prettier --write src/ tests/ example.mts" } }