zerobox 0.1.3 → 0.1.4
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/README.md +8 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
<h1>🫙 zerobox</h1>
|
|
3
3
|
<p><strong>Run any command in a sandbox. Control what it can read, write, and connect to.</strong></p>
|
|
4
4
|
<p>
|
|
5
|
-
<a href="https://crates.io/crates/zerobox" target="_blank">
|
|
6
|
-
<img src="https://img.shields.io/crates/v/zerobox?style=for-the-badge&labelColor=000000" alt="crates.io version" />
|
|
7
|
-
</a>
|
|
8
5
|
<a href="https://www.npmjs.com/package/zerobox" target="_blank">
|
|
9
6
|
<img src="https://img.shields.io/npm/v/zerobox?style=for-the-badge&labelColor=000000" alt="npm version" />
|
|
10
7
|
</a>
|
|
@@ -28,10 +25,17 @@ Cross-platform process sandboxing powered by [OpenAI Codex](https://github.com/o
|
|
|
28
25
|
- 🖥️ **Cross-platform.** macOS, Linux, and Windows.
|
|
29
26
|
- 📦 **Single binary.** No runtime dependencies, no Docker, no VMs.
|
|
30
27
|
|
|
28
|
+
<p align="center">
|
|
29
|
+
<img src="https://raw.githubusercontent.com/afshinm/zerobox/refs/heads/main/packages/zerobox/assets/sandbox-flow.png" alt="zerobox sandbox flow" width="700" />
|
|
30
|
+
</p>
|
|
31
|
+
|
|
31
32
|
## Install
|
|
32
33
|
|
|
33
34
|
```bash
|
|
34
|
-
#
|
|
35
|
+
# Shell (macOS / Linux)
|
|
36
|
+
curl -fsSL https://raw.githubusercontent.com/afshinm/zerobox/main/install.sh | sh
|
|
37
|
+
|
|
38
|
+
# npm
|
|
35
39
|
npm install -g zerobox
|
|
36
40
|
|
|
37
41
|
# From source
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zerobox",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Run any command in a sandbox with file and network restrictions.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"dist/"
|
|
33
33
|
],
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@zerobox/cli-darwin-arm64": "0.1.
|
|
36
|
-
"@zerobox/cli-
|
|
37
|
-
"@zerobox/cli-linux-arm64-musl": "0.1.
|
|
38
|
-
"@zerobox/cli-linux-x64": "0.1.
|
|
39
|
-
"@zerobox/cli-
|
|
40
|
-
"@zerobox/cli-linux-x64-musl": "0.1.
|
|
35
|
+
"@zerobox/cli-darwin-arm64": "0.1.4",
|
|
36
|
+
"@zerobox/cli-linux-arm64": "0.1.4",
|
|
37
|
+
"@zerobox/cli-linux-arm64-musl": "0.1.4",
|
|
38
|
+
"@zerobox/cli-linux-x64": "0.1.4",
|
|
39
|
+
"@zerobox/cli-darwin-x64": "0.1.4",
|
|
40
|
+
"@zerobox/cli-linux-x64-musl": "0.1.4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^22.0.0",
|