UNPKG

@e2b/desktop

Version:

E2B Desktop Sandbox - isolated cloud environment with a desktop-like interface powered by E2B. Ready for AI Computer Use

66 lines 1.47 kB
{ "name": "@e2b/desktop", "version": "1.9.2", "license": "MIT", "description": "E2B Desktop Sandbox - isolated cloud environment with a desktop-like interface powered by E2B. Ready for AI Computer Use", "author": { "name": "FoundryLabs, Inc.", "email": "hello@e2b.dev", "url": "https://e2b.dev" }, "keywords": [ "e2b", "ai-agents", "agents", "ai", "computer-use", "sandbox", "code", "runtime", "vm" ], "bugs": "https://github.com/e2b-dev/desktop/issues", "repository": { "type": "git", "url": "https://github.com/e2b-dev/desktop", "directory": "packages/js-sdk" }, "publishConfig": { "access": "public" }, "files": [ "dist", "README.md", "package.json" ], "engines": { "node": ">=18" }, "browserslist": [ "defaults" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "sideEffects": false, "devDependencies": { "@types/node": "^22.13.9", "dotenv": "^16.4.5", "tsup": "^8.3.5", "tsx": "^4.19.2", "typedoc": "0.26.8", "typedoc-plugin-markdown": "4.2.7", "typescript": "^5.6.3", "vitest": "^3.0.5" }, "dependencies": { "e2b": "^1.4.0" }, "scripts": { "build": "tsc --noEmit && tsup", "dev": "tsup --watch", "test": "vitest run --disable-console-intercept", "example": "npx tsx example.mts", "generate-ref": "./scripts/generate_sdk_ref.sh" } }