@browserbasehq/browse-cli 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +310 -0
  3. package/dist/index.js +1297 -0
  4. package/package.json +70 -0
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@browserbasehq/browse-cli",
3
+ "version": "0.1.0",
4
+ "description": "Browser automation CLI for AI agents, built on Stagehand",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Browserbase <support@browserbase.com>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/browserbase/stagehand.git",
11
+ "directory": "packages/cli"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/browserbase/stagehand/issues"
15
+ },
16
+ "homepage": "https://github.com/browserbase/stagehand/tree/main/packages/cli#readme",
17
+ "keywords": [
18
+ "browser",
19
+ "automation",
20
+ "cli",
21
+ "ai",
22
+ "agent",
23
+ "chrome",
24
+ "cdp",
25
+ "web-scraping",
26
+ "testing",
27
+ "stagehand"
28
+ ],
29
+ "engines": {
30
+ "node": ">=18.0.0"
31
+ },
32
+ "main": "./dist/index.js",
33
+ "bin": {
34
+ "browse": "./dist/index.js"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "dev": "tsx src/index.ts",
44
+ "browse": "tsx src/index.ts",
45
+ "typecheck": "tsc --noEmit",
46
+ "lint": "eslint .",
47
+ "lint:fix": "eslint . --fix",
48
+ "format": "prettier --write .",
49
+ "format:check": "prettier --check .",
50
+ "test": "vitest run",
51
+ "test:watch": "vitest",
52
+ "prepublishOnly": "npm run build"
53
+ },
54
+ "dependencies": {
55
+ "@browserbasehq/stagehand": "^3.0.0",
56
+ "commander": "^12.0.0"
57
+ },
58
+ "devDependencies": {
59
+ "@eslint/js": "^9.16.0",
60
+ "@types/node": "^20.11.30",
61
+ "eslint": "^9.16.0",
62
+ "globals": "^15.13.0",
63
+ "prettier": "^3.2.5",
64
+ "tsup": "^8.2.1",
65
+ "tsx": "^4.10.5",
66
+ "typescript": "^5.2.2",
67
+ "typescript-eslint": "^8.17.0",
68
+ "vitest": "^1.6.0"
69
+ }
70
+ }