@landstrip/landstrip 0.17.0 → 0.17.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.
- package/README.md +14 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -22,6 +22,20 @@ npx landstrip -p policy.json cargo test
|
|
|
22
22
|
The npm package installs a small Node.js wrapper and a platform-specific native
|
|
23
23
|
binary package.
|
|
24
24
|
|
|
25
|
+
|
|
26
|
+
### Agent extensions
|
|
27
|
+
|
|
28
|
+
The bundled extensions integrate Landstrip with Pi and OpenCode:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pi install npm:pi-landstrip
|
|
32
|
+
opencode plugin install opencode-landstrip
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
See [pi-landstrip](packages/pi-landstrip/README.md) and
|
|
36
|
+
[opencode-landstrip](packages/opencode-landstrip/README.md) for configuration
|
|
37
|
+
details.
|
|
38
|
+
|
|
25
39
|
## Platforms
|
|
26
40
|
|
|
27
41
|
| Area | macOS | Linux | Windows |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@landstrip/landstrip",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"description": "Sandbox runner using Landlock, Seatbelt, and AppContainer",
|
|
5
5
|
"license": "Apache-2.0 AND LGPL-2.1-or-later",
|
|
6
6
|
"homepage": "https://github.com/landstrip/landstrip#readme",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"LICENSE-LGPL-2.1"
|
|
31
31
|
],
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@landstrip/landstrip-darwin-arm64": "0.17.
|
|
34
|
-
"@landstrip/landstrip-darwin-x64": "0.17.
|
|
35
|
-
"@landstrip/landstrip-linux-x64": "0.17.
|
|
36
|
-
"@landstrip/landstrip-win32-x64": "0.17.
|
|
33
|
+
"@landstrip/landstrip-darwin-arm64": "0.17.2",
|
|
34
|
+
"@landstrip/landstrip-darwin-x64": "0.17.2",
|
|
35
|
+
"@landstrip/landstrip-linux-x64": "0.17.2",
|
|
36
|
+
"@landstrip/landstrip-win32-x64": "0.17.2"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|