UNPKG

@e2b/desktop

Version:

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

65 lines 1.44 kB
{ "name": "@e2b/desktop", "version": "2.2.3", "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": ">=20" }, "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", "typescript": "^5.6.3", "vitest": "^3.0.5" }, "dependencies": { "e2b": "^2.19.4" }, "scripts": { "build": "tsc --noEmit && tsup", "dev": "tsup --watch", "test": "vitest run --disable-console-intercept", "example": "npx tsx example.mts", "lint": "eslint src/ tests/", "format": "prettier --write src/ tests/ example.mts" } }