-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.93 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@e2b/code-interpreter",
"version": "2.0.0",
"packageManager": "pnpm@9.15.5",
"description": "E2B Code Interpreter - Stateful code execution",
"homepage": "https://e2b.dev",
"license": "MIT",
"author": {
"name": "FoundryLabs, Inc.",
"email": "hello@e2b.dev",
"url": "https://e2b.dev"
},
"bugs": "https://github.com/e2b-dev/code-interpreter/issues",
"repository": {
"type": "git",
"url": "https://github.com/e2b-dev/code-interpreter",
"directory": "js"
},
"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",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"check-deps": "knip",
"update-deps": "ncu -u && pnpm i",
"example": "npx tsx example.mts",
"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",
"generate-ref": "./scripts/generate_sdk_ref.sh",
"lint": "eslint src/ tests/",
"format": "prettier --write src/ tests/ example.mts"
},
"devDependencies": {
"@types/node": "^18.18.6",
"dotenv": "^16.4.5",
"knip": "^5.25.1",
"npm-check-updates": "^17.1.14",
"tsup": "^8.4.0",
"typedoc": "0.26.8",
"typedoc-plugin-markdown": "4.2.7",
"typescript": "^5.5.3",
"vitest": "^3.0.9"
},
"files": [
"dist",
"README.md",
"package.json"
],
"keywords": [
"e2b",
"ai-agents",
"agents",
"ai",
"code-interpreter",
"stateful-sandbox",
"stateful-serverrless",
"sandbox",
"code",
"runtime",
"vm"
],
"dependencies": {
"e2b": "^2.0.1"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"defaults"
]
}