bb-browser 0.9.0 → 0.10.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.
File without changes
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "bb-browser",
4
- "version": "0.9.0",
4
+ "version": "0.10.0",
5
5
  "description": "Browser automation for AI agents",
6
6
  "permissions": [
7
7
  "tabs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-browser",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Your browser is the API. CLI + MCP server for AI agents to control Chrome with your login state.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,16 +14,6 @@
14
14
  "README.md",
15
15
  "LICENSE"
16
16
  ],
17
- "scripts": {
18
- "build": "turbo run build && pnpm build:release",
19
- "build:release": "tsup && pnpm build:extension",
20
- "build:extension": "rm -rf extension && cp -r packages/extension/dist extension",
21
- "dev": "turbo run dev",
22
- "test": "turbo run test",
23
- "lint": "turbo run lint",
24
- "clean": "turbo run clean && rm -rf node_modules dist extension",
25
- "prepublishOnly": "pnpm build:release"
26
- },
27
17
  "keywords": [
28
18
  "browser",
29
19
  "automation",
@@ -50,7 +40,6 @@
50
40
  "engines": {
51
41
  "node": ">=18.0.0"
52
42
  },
53
- "packageManager": "pnpm@9.15.0",
54
43
  "dependencies": {
55
44
  "@bufbuild/protobuf": "^2.11.0",
56
45
  "@connectrpc/connect": "^2.1.1",
@@ -68,5 +57,14 @@
68
57
  "turbo": "^2.3.0",
69
58
  "typescript": "^5.7.0",
70
59
  "typescript-eslint": "^8.29.0"
60
+ },
61
+ "scripts": {
62
+ "build": "turbo run build && pnpm build:release",
63
+ "build:release": "tsup && pnpm build:extension",
64
+ "build:extension": "rm -rf extension && cp -r packages/extension/dist extension",
65
+ "dev": "turbo run dev",
66
+ "test": "turbo run test",
67
+ "lint": "turbo run lint",
68
+ "clean": "turbo run clean && rm -rf node_modules dist extension"
71
69
  }
72
- }
70
+ }