├── .assets └── demo.png ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── .yarn └── sdks │ ├── integrations.yml │ └── typescript │ ├── bin │ ├── tsc │ └── tsserver │ ├── lib │ ├── tsc.js │ ├── tsserver.js │ ├── tsserverlibrary.js │ └── typescript.js │ └── package.json ├── .yarnrc.yml ├── README.md ├── bundle.ts ├── dist ├── bundle.js └── nodeEntry.cjs ├── package.json ├── serve.json ├── src ├── impl │ └── runSandboxedScript.ts ├── index.ts ├── nodeEntry.ts └── nodes │ └── RunSandboxedScriptNode.ts ├── tsconfig.json └── yarn.lock /.assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.assets/demo.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/sdks/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/integrations.yml -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/bin/tsc -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/bin/tsserver -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/lib/tsc.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsserverlibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/lib/tsserverlibrary.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/lib/typescript.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/.yarn/sdks/typescript/package.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/README.md -------------------------------------------------------------------------------- /bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/bundle.ts -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/nodeEntry.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/dist/nodeEntry.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/package.json -------------------------------------------------------------------------------- /serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/serve.json -------------------------------------------------------------------------------- /src/impl/runSandboxedScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/src/impl/runSandboxedScript.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nodeEntry.ts: -------------------------------------------------------------------------------- 1 | export * from "./impl/runSandboxedScript"; 2 | -------------------------------------------------------------------------------- /src/nodes/RunSandboxedScriptNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/src/nodes/RunSandboxedScriptNode.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/rivet-plugin-e2b/HEAD/yarn.lock --------------------------------------------------------------------------------