{ "name": "@elizaos/plugin-e2b-sandbox", "version": "1.0.0", "description": "E2B (e2b.dev) cloud sandbox backend for the elizaOS remote capability router — registers the E2B sandbox factory service so the router can route filesystem/terminal/git into a vendor sandbox.", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/elizaos/eliza.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "bun": "./index.ts", "development": "./index.ts", "import": "./dist/index.js", "default": "./dist/index.js" }, "./*": { "types": "./dist/*.d.ts", "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "dist" ], "keywords": [ "eliza", "plugin", "e2b", "sandbox", "capability-router", "remote-runner" ], "author": "elizaOS", "license": "MIT", "dependencies": { "@elizaos/core": "workspace:*", "e2b": "^2.20.1" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.3", "bun-types": "^1.2.25", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "scripts": { "build": "bun run build.ts", "build:ts": "bun run build.ts", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "vitest run", "test:unit": "vitest run", "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "E2B_API_KEY": { "type": "string", "description": "E2B (e2b.dev) API key used to create sandboxes for the remote capability router.", "required": false, "sensitive": true }, "E2B_ACCESS_TOKEN": { "type": "string", "description": "E2B access token (alternative to E2B_API_KEY).", "required": false, "sensitive": true }, "E2B_DOMAIN": { "type": "string", "description": "Override the E2B API domain (self-hosted / enterprise deployments).", "required": false, "sensitive": false }, "E2B_TEMPLATE": { "type": "string", "description": "E2B sandbox template id to create sandboxes from.", "required": false, "sensitive": false } } }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Default export (Node.js) — requires network access to the e2b.dev API" } } }