browse
Version:
Unified Browserbase CLI for browser automation and cloud APIs.
137 lines (136 loc) • 3.96 kB
JSON
{
"name": "browse",
"version": "0.7.1",
"description": "Unified Browserbase CLI for browser automation and cloud APIs.",
"type": "module",
"private": false,
"packageManager": "bun@1.3.6",
"bin": {
"browse": "bin/run.js"
},
"files": [
"bin",
"dist",
"oclif.manifest.json",
"skills",
"README.md"
],
"publishConfig": {
"access": "public"
},
"oclif": {
"bin": "browse",
"dirname": "browse",
"commands": "./dist/commands",
"hooks": {
"init": "./dist/hooks/init.js",
"prerun": "./dist/hooks/prerun.js",
"finally": "./dist/hooks/finally.js"
},
"topicSeparator": " ",
"topics": {
"cloud": {
"description": "Manage Browserbase cloud resources and APIs."
},
"cloud:projects": {
"description": "Manage Browserbase projects."
},
"cloud:contexts": {
"description": "Manage Browserbase contexts."
},
"cloud:extensions": {
"description": "Manage Browserbase Chrome extensions."
},
"cloud:sessions": {
"description": "Manage Browserbase browser sessions."
},
"cloud:sessions:downloads": {
"description": "Download Browserbase session artifacts."
},
"cloud:sessions:uploads": {
"description": "Upload files to Browserbase sessions."
},
"functions": {
"description": "Develop, publish, and invoke Browserbase Functions."
},
"mouse": {
"description": "Send raw mouse coordinate input."
},
"network": {
"description": "Capture browser network traffic for the active session."
},
"skills": {
"description": "Discover and install browser automation skills."
},
"tab": {
"description": "Manage browser tabs in the active session."
},
"templates": {
"description": "Browse and scaffold Browserbase templates."
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserbase/cli.git"
},
"bugs": {
"url": "https://github.com/browserbase/cli/issues"
},
"homepage": "https://github.com/browserbase/cli#readme",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "node -e \"const fs = require('fs'); fs.rmSync('dist', { recursive: true, force: true }); fs.rmSync('oclif.manifest.json', { force: true })\" && tsc -p tsconfig.json && bun run manifest",
"check": "tsc --noEmit -p tsconfig.json",
"cli": "bun run build && node bin/run.js",
"changeset": "changeset",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier . --check --cache",
"lint": "bun run format:check && bun run eslint && bun run check",
"manifest": "oclif manifest .",
"prepare": "husky",
"release": "bun run build && changeset publish",
"test": "bun run build && vitest run",
"version": "changeset version",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@browserbasehq/sdk": "^2.8.0",
"@browserbasehq/stagehand": "^3.3.0",
"@oclif/core": "^4.11.0",
"archiver": "^7.0.1",
"deepmerge": "^4.3.1",
"dotenv": "^16.5.0",
"ignore": "^7.0.5",
"node-html-markdown": "^1.3.0",
"semver": "^7.7.4",
"tsx": "^4.20.6",
"ws": "^8.18.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"@types/archiver": "^6.0.3",
"@types/node": "^24.0.0",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
"eslint": "^10.4.0",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"oclif": "^4.23.1",
"prettier": "^3.8.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}