@browserbasehq/convex-stagehand 0.1.0 → 0.1.1
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/README.md +2 -2
- package/dist/component/convex.config.d.ts +1 -1
- package/package.json +6 -9
package/README.md
CHANGED
|
@@ -459,8 +459,8 @@ The component requires a Convex deployment to generate proper component API type
|
|
|
459
459
|
Check out the full example app in the [`example/`](./example) directory:
|
|
460
460
|
|
|
461
461
|
```bash
|
|
462
|
-
git clone https://github.com/browserbase/
|
|
463
|
-
cd convex-stagehand/example
|
|
462
|
+
git clone https://github.com/browserbase/integrations
|
|
463
|
+
cd integrations/packages/convex-stagehand/example
|
|
464
464
|
npm install
|
|
465
465
|
npm run dev
|
|
466
466
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browserbasehq/convex-stagehand",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Convex component for AI-powered browser automation with Stagehand",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/client/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"src"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "
|
|
31
|
+
"build": "tsc --project ./tsconfig.build.json",
|
|
32
32
|
"build:esm": "tsc --project ./tsconfig.build.json",
|
|
33
33
|
"build:codegen": "npx convex codegen --component-dir ./src/component && npm run build:esm",
|
|
34
34
|
"build:clean": "rm -rf dist && npm run build:codegen",
|
|
@@ -38,10 +38,7 @@
|
|
|
38
38
|
"typecheck": "tsc --noEmit && cd example && tsc --noEmit",
|
|
39
39
|
"lint": "eslint .",
|
|
40
40
|
"test": "vitest run --typecheck",
|
|
41
|
-
"test:watch": "vitest --typecheck"
|
|
42
|
-
"changeset": "changeset",
|
|
43
|
-
"version": "changeset version",
|
|
44
|
-
"release": "npm run build && changeset publish"
|
|
41
|
+
"test:watch": "vitest --typecheck"
|
|
45
42
|
},
|
|
46
43
|
"keywords": [
|
|
47
44
|
"convex",
|
|
@@ -56,7 +53,8 @@
|
|
|
56
53
|
"license": "MIT",
|
|
57
54
|
"repository": {
|
|
58
55
|
"type": "git",
|
|
59
|
-
"url": "https://github.com/browserbase/
|
|
56
|
+
"url": "https://github.com/browserbase/integrations.git",
|
|
57
|
+
"directory": "packages/convex-stagehand"
|
|
60
58
|
},
|
|
61
59
|
"publishConfig": {
|
|
62
60
|
"access": "public"
|
|
@@ -69,8 +67,6 @@
|
|
|
69
67
|
"zod": "^3.23.0"
|
|
70
68
|
},
|
|
71
69
|
"devDependencies": {
|
|
72
|
-
"@changesets/changelog-github": "^0.5.0",
|
|
73
|
-
"@changesets/cli": "^2.27.9",
|
|
74
70
|
"@eslint/js": "^9.0.0",
|
|
75
71
|
"@types/node": "^20.10.0",
|
|
76
72
|
"chokidar-cli": "^3.0.0",
|
|
@@ -81,6 +77,7 @@
|
|
|
81
77
|
"prettier": "^3.0.0",
|
|
82
78
|
"typescript": "^5.9.0",
|
|
83
79
|
"typescript-eslint": "^8.0.0",
|
|
80
|
+
"vite": "^7.3.1",
|
|
84
81
|
"vitest": "^3.0.0",
|
|
85
82
|
"zod": "^3.23.0"
|
|
86
83
|
}
|