sandboxbox 2.2.4 → 2.2.5

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.
package/CLAUDE.md CHANGED
@@ -81,7 +81,7 @@ if (process.platform === 'win32' && isBundled) {
81
81
  - **Simple Configuration**: Minimal backend setup only when needed
82
82
  - **Auto-Download**: Downloads platform-specific binaries automatically
83
83
  - **NPX Compatible**: Works via npx without global installation
84
- - **Windows Podman Remote**: Uses podman-remote-release-windows_amd64.zip as portable client
84
+ - **Windows Portable Binary**: Uses podman-remote-release-windows_amd64.zip with lightweight backend
85
85
 
86
86
  ## Isolation Architecture
87
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "Portable container runner with Podman - Claude Code & Playwright support. Works on Windows, macOS, and Linux.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -38,7 +38,7 @@ async function main() {
38
38
  return;
39
39
  }
40
40
 
41
- console.log(`📥 Downloading Podman remote v${PODMAN_VERSION}...`);
41
+ console.log(`📥 Downloading Podman v${PODMAN_VERSION}...`);
42
42
 
43
43
  const archiveName = url.split('/').pop();
44
44
  const archivePath = join(binDir, archiveName);
@@ -77,7 +77,7 @@ async function main() {
77
77
  chmodSync(binaryPath, 0o755);
78
78
  }
79
79
 
80
- console.log(`✅ Podman remote installed successfully!`);
80
+ console.log(`✅ Podman installed successfully!`);
81
81
  console.log(` Binary: ${binaryPath}\n`);
82
82
 
83
83
  if (existsSync(archivePath)) {