@cloudflare/sandbox 0.0.0-037c848

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "sandbox-server",
3
+ "version": "1.0.0",
4
+ "description": "A server for the sandbox package",
5
+ "main": "index.ts",
6
+ "scripts": {
7
+ "start": "bun run index.ts"
8
+ }
9
+ }
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@cloudflare/sandbox",
3
+ "version": "0.0.0-037c848",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/cloudflare/sandbox-sdk"
7
+ },
8
+ "description": "A sandboxed environment for running commands",
9
+ "dependencies": {
10
+ "@cloudflare/containers": "^0.0.13"
11
+ },
12
+ "tags": [
13
+ "sandbox",
14
+ "codegen",
15
+ "containers",
16
+ "cloudflare",
17
+ "durable objects"
18
+ ],
19
+ "scripts": {
20
+ "build": "rm -rf dist && tsup src/*.ts --outDir dist --dts --sourcemap --format esm",
21
+ "docker:build": "docker build -t ghostwriternr/cloudflare-sandbox:$npm_package_version .",
22
+ "docker:publish": "docker push docker.io/ghostwriternr/cloudflare-sandbox:$npm_package_version"
23
+ },
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js",
28
+ "require": "./dist/index.js"
29
+ },
30
+ "./client": {
31
+ "types": "./dist/client.d.ts",
32
+ "import": "./dist/client.js",
33
+ "require": "./dist/client.js"
34
+ }
35
+ },
36
+ "keywords": [],
37
+ "author": "",
38
+ "license": "ISC",
39
+ "type": "module"
40
+ }