@e2b/code-interpreter
Version:
E2B Code Interpreter - Stateful code execution
75 lines • 1.81 kB
JSON
{
"name": "@e2b/code-interpreter",
"version": "1.1.0",
"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",
"devDependencies": {
"@types/node": "^18.18.6",
"dotenv": "^16.4.5",
"knip": "^5.25.1",
"npm-check-updates": "^17.1.14",
"tsup": "^8.3.6",
"typedoc": "0.26.8",
"typedoc-plugin-markdown": "4.2.7",
"typescript": "^5.5.3",
"vitest": "^3.0.5"
},
"files": [
"dist",
"README.md",
"package.json"
],
"keywords": [
"e2b",
"ai-agents",
"agents",
"ai",
"code-interpreter",
"stateful-sandbox",
"stateful-serverrless",
"sandbox",
"code",
"runtime",
"vm"
],
"dependencies": {
"e2b": "^1.2.1"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"defaults"
],
"scripts": {
"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"
}
}