bx-mac 0.8.1 → 0.9.0
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 +5 -0
- package/package.json +23 -4
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# 📦 bx
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/bx-mac)
|
|
4
|
+
[](https://www.npmjs.com/package/bx-mac)
|
|
5
|
+
[](https://github.com/holtwick/bx-mac/blob/master/LICENSE)
|
|
6
|
+
[](https://github.com/holtwick/bx-mac)
|
|
7
|
+
|
|
3
8
|
> **Put your AI in a box.** Launch VSCode, Claude Code, a terminal, or any command in a macOS sandbox — your tools can only see the project you're working on.
|
|
4
9
|
|
|
5
10
|
## 🤔 Why?
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bx-mac",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "Sandbox any macOS app — only your project directory stays accessible",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bx": "dist/bx.js"
|
|
@@ -22,11 +22,30 @@
|
|
|
22
22
|
"sandbox",
|
|
23
23
|
"macos",
|
|
24
24
|
"security",
|
|
25
|
+
"privacy",
|
|
26
|
+
"cli",
|
|
27
|
+
"developer-tools",
|
|
25
28
|
"vscode",
|
|
26
|
-
"
|
|
29
|
+
"xcode",
|
|
30
|
+
"claude-code",
|
|
31
|
+
"terminal"
|
|
27
32
|
],
|
|
28
|
-
"author":
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "Dirk Holtwick",
|
|
35
|
+
"url": "https://holtwick.de"
|
|
36
|
+
},
|
|
29
37
|
"license": "MIT",
|
|
38
|
+
"homepage": "https://github.com/holtwick/bx-mac#readme",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/holtwick/bx-mac.git"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/holtwick/bx-mac/issues"
|
|
45
|
+
},
|
|
46
|
+
"os": [
|
|
47
|
+
"darwin"
|
|
48
|
+
],
|
|
30
49
|
"devDependencies": {
|
|
31
50
|
"@types/node": "^25.5.0",
|
|
32
51
|
"rolldown": "^1.0.0-rc.12",
|