@browserbasehq/stagehand 2.5.3 → 2.5.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browserbasehq/stagehand",
3
- "version": "2.5.3",
3
+ "version": "2.5.5",
4
4
  "description": "An AI web browsing framework focused on simplicity and extensibility.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -8,30 +8,6 @@
8
8
  "bin": {
9
9
  "evals": "./dist/evals/cli.js"
10
10
  },
11
- "scripts": {
12
- "example": "pnpm --filter @browserbasehq/stagehand-examples run start",
13
- "format": "prettier --write .",
14
- "prettier": "prettier --check .",
15
- "prettier:fix": "prettier --write .",
16
- "eslint": "eslint .",
17
- "cache:clear": "rm -rf .cache",
18
- "docs": "pnpm --filter @browserbasehq/stagehand-docs run dev",
19
- "evals": "tsx scripts/run-evals.ts",
20
- "evals:legacy": "tsx scripts/run-evals.ts",
21
- "e2e": "pnpm run build && cd evals/deterministic && playwright test --config=e2e.playwright.config.ts",
22
- "e2e:bb": "pnpm run build && cd evals/deterministic && playwright test --config=bb.playwright.config.ts",
23
- "e2e:local": "pnpm run build && cd evals/deterministic && playwright test --config=local.playwright.config.ts",
24
- "build-dom-scripts": "tsx lib/dom/genDomScripts.ts",
25
- "build-types": "tsc --emitDeclarationOnly --outDir dist",
26
- "build-js": "tsup lib/index.ts --dts",
27
- "build:cli": "tsup evals/cli.ts --outDir dist/evals --format cjs && cp evals/evals.config.json dist/evals/ && chmod +x dist/evals/cli.js && npm link",
28
- "build": "pnpm run lint && pnpm run gen-version && pnpm run build-dom-scripts && pnpm run build-js && pnpm run build-types",
29
- "gen-version": "tsx scripts/gen-version.ts",
30
- "prepare": "pnpm run build",
31
- "lint": "pnpm run prettier:fix && pnpm run eslint",
32
- "release": "pnpm run build && changeset publish",
33
- "release-canary": "pnpm run build && changeset version --snapshot && changeset publish --tag alpha"
34
- },
35
11
  "files": [
36
12
  "dist/**"
37
13
  ],
@@ -118,5 +94,27 @@
118
94
  "overrides": {
119
95
  "whatwg-url": "^14.0.0"
120
96
  },
121
- "packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
122
- }
97
+ "scripts": {
98
+ "example": "pnpm --filter @browserbasehq/stagehand-examples run start",
99
+ "format": "prettier --write .",
100
+ "prettier": "prettier --check .",
101
+ "prettier:fix": "prettier --write .",
102
+ "eslint": "eslint .",
103
+ "cache:clear": "rm -rf .cache",
104
+ "docs": "pnpm --filter @browserbasehq/stagehand-docs run dev",
105
+ "evals": "tsx scripts/run-evals.ts",
106
+ "evals:legacy": "tsx scripts/run-evals.ts",
107
+ "e2e": "pnpm run build && cd evals/deterministic && playwright test --config=e2e.playwright.config.ts",
108
+ "e2e:bb": "pnpm run build && cd evals/deterministic && playwright test --config=bb.playwright.config.ts",
109
+ "e2e:local": "pnpm run build && cd evals/deterministic && playwright test --config=local.playwright.config.ts",
110
+ "build-dom-scripts": "tsx lib/dom/genDomScripts.ts",
111
+ "build-types": "tsc --emitDeclarationOnly --outDir dist",
112
+ "build-js": "tsup lib/index.ts --dts",
113
+ "build:cli": "tsup evals/cli.ts --outDir dist/evals --format cjs && cp evals/evals.config.json dist/evals/ && chmod +x dist/evals/cli.js && npm link",
114
+ "build": "pnpm run lint && pnpm run gen-version && pnpm run build-dom-scripts && pnpm run build-js && pnpm run build-types",
115
+ "gen-version": "tsx scripts/gen-version.ts",
116
+ "lint": "pnpm run prettier:fix && pnpm run eslint",
117
+ "release": "pnpm run build && changeset publish",
118
+ "release-canary": "pnpm run build && changeset version --snapshot && changeset publish --tag alpha"
119
+ }
120
+ }