-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@e2b/desktop",
"version": "2.2.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": ">=20"
},
"browserslist": [
"defaults"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prepublishOnly": "pnpm build",
"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",
"lint": "eslint src/ tests/",
"format": "prettier --write src/ tests/ example.mts"
},
"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": "^2.8.4"
}
}