{
  "name": "rychlis-e2b-code-interpreter",
  "version": "1.2.0-rychlis.0",
  "packageManager": "pnpm@8.7.6",
  "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",
    "@types/ws": "^8.5.10",
    "dotenv": "^16.4.5",
    "knip": "^5.25.1",
    "npm-check-updates": "^16.14.20",
    "tsup": "^8.1.0",
    "typedoc": "^0.26.8",
    "typedoc-plugin-markdown": "^4.2.7",
    "typescript": "^5.5.3",
    "vitest": "^2.0.1"
  },
  "files": [
    "dist",
    "README.md",
    "package.json"
  ],
  "keywords": [
    "e2b",
    "ai-agents",
    "agents",
    "ai",
    "code-interpreter",
    "stateful-sandbox",
    "stateful-serverrless",
    "sandbox",
    "code",
    "runtime",
    "vm"
  ],
  "dependencies": {
    "e2b": "npm:rychlis-e2b@1.2.0-rychlis.0"
  },
  "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"
  }
}