agentsphere-js
Version:
云端代码沙箱 SDK - 为 AI agents 提供安全的代码执行环境
63 lines • 1.54 kB
JSON
{
"name": "agentsphere-js",
"version": "1.0.3",
"description": "云端代码沙箱 SDK - 为 AI agents 提供安全的代码执行环境",
"homepage": "https://www.agentsphere.run",
"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": {
"agentsphere-sandbox-base": "^1.0.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"
}
}