browser4-cli 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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser4-cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "files": [
@@ -19,7 +19,7 @@
19
19
  "build:linux": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-linux",
20
20
  "build:macos": "npm run version:sync && (cargo build --release --manifest-path browser4-cli/Cargo.toml --target aarch64-apple-darwin & cargo build --release --manifest-path browser4-cli/Cargo.toml --target x86_64-apple-darwin & wait) && cp cli/target/aarch64-apple-darwin/release/browser4 bin/browser4-darwin-arm64 && cp cli/target/x86_64-apple-darwin/release/browser4 bin/browser4-darwin-x64",
21
21
  "build:windows": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-windows",
22
- "build:all-platforms": "npm run version:sync && (npm run build:linux & npm run build:windows & wait) && npm run build:macos",
22
+ "build:all-platforms": "npm run version:sync && (npm run build:linux & npm run build:windows & wait)",
23
23
  "build:docker": "docker build -t browser4-builder -f docker/Dockerfile.build .",
24
24
  "release": "npm run version:sync && npm run build:all-platforms && npm publish",
25
25
  "postinstall": "node scripts/postinstall.js"