@sysid/sandbox-runtime-improved 0.0.49-sysid.1 → 0.0.49-sysid.2

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,6 @@
1
+ FROM ubuntu:24.04
2
+ RUN apt-get update && apt-get install -y --no-install-recommends \
3
+ gcc libc6-dev libseccomp-dev curl unzip ca-certificates && \
4
+ rm -rf /var/lib/apt/lists/*
5
+ RUN curl -fsSL https://bun.sh/install | BUN_INSTALL=/usr/local bash
6
+ WORKDIR /build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sysid/sandbox-runtime-improved",
3
- "version": "0.0.49-sysid.1",
3
+ "version": "0.0.49-sysid.2",
4
4
  "description": "Improved Anthropic Sandbox Runtime (ASRT) - A general-purpose tool for wrapping security boundaries around arbitrary processes (sysid fork with several improvements and bug fixes)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint": "eslint 'src/**/*.ts' --fix --cache --cache-location=node_modules/.cache/.eslintcache",
21
21
  "lint:check": "eslint 'src/**/*.ts' --cache --cache-location=node_modules/.cache/.eslintcache",
22
22
  "format": "prettier --write 'src/**/*.ts' --cache --log-level warn",
23
- "prepublishOnly": "npm run clean && npm run build && cp -r vendor dist/",
23
+ "prepublishOnly": "npm run clean && npm run build && cp -r vendor dist/ && node -e \"['x64','arm64'].forEach(a=>{if(!require('fs').existsSync('dist/vendor/seccomp/'+a+'/apply-seccomp')){console.error('Missing seccomp binary: '+a);process.exit(1)}})\"",
24
24
  "prepare": "husky"
25
25
  },
26
26
  "dependencies": {
@@ -0,0 +1,6 @@
1
+ FROM ubuntu:24.04
2
+ RUN apt-get update && apt-get install -y --no-install-recommends \
3
+ gcc libc6-dev libseccomp-dev curl unzip ca-certificates && \
4
+ rm -rf /var/lib/apt/lists/*
5
+ RUN curl -fsSL https://bun.sh/install | BUN_INSTALL=/usr/local bash
6
+ WORKDIR /build
Binary file