@browserbasehq/stagehand 3.0.3 → 3.0.4-alpha-44bb4f51dcccbdca8df07e4d7f8d28a7e6e793ec

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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +5 -3
package/dist/index.js CHANGED
@@ -85,7 +85,7 @@ var __async = (__this, __arguments, generator) => {
85
85
  var STAGEHAND_VERSION;
86
86
  var init_version = __esm({
87
87
  "lib/version.ts"() {
88
- STAGEHAND_VERSION = "3.0.3";
88
+ STAGEHAND_VERSION = "3.0.4-alpha-44bb4f51dcccbdca8df07e4d7f8d28a7e6e793ec";
89
89
  }
90
90
  });
91
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browserbasehq/stagehand",
3
- "version": "3.0.3",
3
+ "version": "3.0.4-alpha-44bb4f51dcccbdca8df07e4d7f8d28a7e6e793ec",
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",
@@ -68,7 +68,8 @@
68
68
  "prettier": "^3.2.5",
69
69
  "tsup": "^8.2.1",
70
70
  "tsx": "^4.10.5",
71
- "typescript": "^5.2.2"
71
+ "typescript": "^5.2.2",
72
+ "vitest": "^4.0.8"
72
73
  },
73
74
  "repository": {
74
75
  "type": "git",
@@ -91,6 +92,7 @@
91
92
  "e2e:local": "playwright test --config=lib/v3/tests/v3.local.playwright.config.ts",
92
93
  "e2e:bb": "playwright test --config=lib/v3/tests/v3.bb.playwright.config.ts",
93
94
  "lint": "cd ../.. && prettier --check packages/core && cd packages/core && eslint .",
94
- "format": "prettier --write ."
95
+ "format": "prettier --write .",
96
+ "test:vitest": "pnpm run build-js && vitest run --config vitest.config.ts"
95
97
  }
96
98
  }