agent-browser-stealth 0.27.0-fork.7 → 0.27.0-fork.8
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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-browser-stealth",
|
|
3
|
-
"version": "0.27.0-fork.
|
|
3
|
+
"version": "0.27.0-fork.8",
|
|
4
4
|
"description": "Browser automation CLI for AI agents — stealth fork with anti-detection",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"version": "npm run version:sync && git add cli/Cargo.toml",
|
|
22
22
|
"build:native": "npm run version:sync && cargo build --release --manifest-path cli/Cargo.toml && node scripts/copy-native.js",
|
|
23
23
|
"build:linux": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-linux",
|
|
24
|
-
"build:macos": "npm run version:sync &&
|
|
24
|
+
"build:macos": "npm run version:sync && bash -c 'cargo build --release --manifest-path cli/Cargo.toml --target aarch64-apple-darwin & PID1=$!; cargo build --release --manifest-path cli/Cargo.toml --target x86_64-apple-darwin & PID2=$!; wait $PID1 || exit 1; wait $PID2 || exit 1' && cp cli/target/aarch64-apple-darwin/release/agent-browser bin/agent-browser-darwin-arm64 && cp cli/target/x86_64-apple-darwin/release/agent-browser bin/agent-browser-darwin-x64",
|
|
25
25
|
"build:windows": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-windows",
|
|
26
|
-
"build:all-platforms": "npm run version:sync &&
|
|
26
|
+
"build:all-platforms": "npm run version:sync && npm run build:linux && npm run build:windows && npm run build:macos",
|
|
27
27
|
"build:docker": "docker build -t agent-browser-builder -f docker/Dockerfile.build .",
|
|
28
28
|
"release": "npm run version:sync && npm run build:all-platforms && npm publish --tag fork",
|
|
29
29
|
"postinstall": "node scripts/postinstall.js"
|