/ package.json
package.json
 1  {
 2    "name": "agent-browser",
 3    "version": "0.26.0",
 4    "description": "Browser automation CLI for AI agents",
 5    "type": "module",
 6    "files": [
 7      "bin",
 8      "scripts",
 9      "skill-data",
10      "skills"
11    ],
12    "bin": {
13      "agent-browser": "./bin/agent-browser.js"
14    },
15    "scripts": {
16      "version:sync": "node scripts/sync-version.js",
17      "version": "npm run version:sync && git add cli/Cargo.toml",
18      "build:native": "npm run version:sync && cargo build --release --manifest-path cli/Cargo.toml && node scripts/copy-native.js",
19      "build:linux": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-linux",
20      "build:macos": "npm run version:sync && (cargo build --release --manifest-path cli/Cargo.toml --target aarch64-apple-darwin & cargo build --release --manifest-path cli/Cargo.toml --target x86_64-apple-darwin & wait) && 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",
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",
23      "build:docker": "docker build -t agent-browser-builder -f docker/Dockerfile.build .",
24      "release": "npm run version:sync && npm run build:all-platforms && npm publish",
25      "postinstall": "node scripts/postinstall.js",
26      "build:dashboard": "cd packages/dashboard && pnpm build"
27    },
28    "keywords": [
29      "browser",
30      "automation",
31      "headless",
32      "chrome",
33      "cdp",
34      "cli",
35      "agent"
36    ],
37    "license": "Apache-2.0",
38    "repository": {
39      "type": "git",
40      "url": "git+https://github.com/vercel-labs/agent-browser.git"
41    },
42    "bugs": {
43      "url": "https://github.com/vercel-labs/agent-browser/issues"
44    },
45    "homepage": "https://agent-browser.dev",
46    "devDependencies": {}
47  }