Files
e2b-dev--e2b/packages/js-sdk/package.json
T
Pavel 'Strajk' Dolecek 4eba0e1232
Test CLI / Build CLI (push) Has been cancelled
chore(js-sdk,cli): Compat with Node 16 (#163)
Co-authored-by: Jakub Novák <jakub@e2b.dev>
2023-09-25 14:57:13 +02:00

82 lines
2.1 KiB
JSON

{
"name": "@e2b/sdk",
"version": "0.3.2",
"description": "E2B SDK that give agents cloud environments",
"homepage": "https://e2b.dev",
"license": "MIT",
"author": {
"name": "FoundryLabs, Inc.",
"email": "hello@e2b.dev",
"url": "https://e2b.dev"
},
"bugs": "https://github.com/e2b-dev/e2b/issues",
"repository": {
"type": "git",
"url": "https://github.com/e2b-dev/e2b/tree/main/packages/js-sdk"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd": "dist/umd/index.js",
"scripts": {
"prepublishOnly": "rollup -c",
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "rollup -c -w",
"measure": "node test/performance.mjs",
"run": "node test/run.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test-smoke": "vitest run _smoke",
"generate": "openapi-typescript ../../openapi.yml -x api_key --support-array-length --alphabetize --output src/api/schema.gen.ts"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^18.7.23",
"@types/normalize-path": "^3.0.0",
"@types/platform": "^1.3.4",
"@types/utf-8-validate": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"openapi-typescript": "^5.4.1",
"rollup": "^2.79.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.9.4",
"vitest": "^0.34.2"
},
"files": [
"dist",
"README.md",
"package.json"
],
"keywords": [
"e2b",
"ai-agents",
"agents",
"ai",
"code-interpreter",
"sandbox",
"code",
"runtime",
"vm",
"nodejs",
"javascript",
"typescript"
],
"dependencies": {
"bufferutil": "^4.0.7",
"cross-fetch": "^3.1.5",
"normalize-path": "^3.0.0",
"openapi-typescript-fetch": "^1.1.3",
"platform": "^1.3.6",
"rpc-websocket-client": "^1.1.4",
"utf-8-validate": "^5.0.10"
}
}