-
Notifications
You must be signed in to change notification settings - Fork 526
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "e2b",
"version": "1.1.0-autopause.1",
"description": "E2B SDK that give agents cloud environments",
"homepage": "https://e2b.dev",
"license": "MIT",
"author": {
"name": "FoundryLabs, Inc.",
"email": "[email protected]",
"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",
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsc --noEmit && tsup",
"dev": "tsup --watch",
"example": "tsx example.mts",
"test": "vitest run",
"generate": "openapi-typescript ../../spec/openapi.yml -x api_key --support-array-length --alphabetize --output src/api/schema.gen.ts",
"generate-envd-api": "openapi-typescript ../../spec/envd/envd.yaml -x api_key --support-array-length --alphabetize --output src/envd/schema.gen.ts",
"generate-ref": "./scripts/generate_sdk_ref.sh",
"check-deps": "knip",
"update-deps": "ncu -u && pnpm i",
"postPublish": "./scripts/post-publish.sh || true",
"test:bun": "bun test tests/runtimes/bun --env-file=.env",
"test:deno": "deno test tests/runtimes/deno/ --allow-net --allow-read --allow-env --unstable-sloppy-imports --trace-leaks"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/node": "^18.18.6",
"@types/platform": "^1.3.6",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/browser": "^2.1.2",
"dotenv": "^16.4.5",
"knip": "^5.17.3",
"npm-check-updates": "^16.14.20",
"openapi-typescript": "^6.7.6",
"playwright": "^1.48.0",
"react": "^18.3.1",
"tsup": "^8.0.2",
"typedoc": "^0.26.8",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.4.5",
"vitest": "^2.1.2",
"vitest-browser-react": "^0.0.1"
},
"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.2.2",
"@connectrpc/connect": "2.0.0-rc.3",
"@connectrpc/connect-web": "2.0.0-rc.3",
"compare-versions": "^6.1.0",
"openapi-fetch": "^0.9.7",
"platform": "^1.3.6"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"defaults"
]
}