bb-browser-api 0.11.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 ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "bb-browser-api",
3
+ "version": "0.11.5",
4
+ "description": "Your browser is the API. CLI + MCP server for AI agents to control Chrome with your login state. Fork with HTTP API endpoints.",
5
+ "type": "module",
6
+ "bin": {
7
+ "bb-browser-api": "./dist/cli.js",
8
+ "bb-browser-api-mcp": "./dist/mcp.js",
9
+ "bb-browser-api-provider": "./dist/provider.js"
10
+ },
11
+ "main": "./dist/cli.js",
12
+ "files": [
13
+ "dist",
14
+ "packages/shared/buildDomTree.js",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "build": "turbo run build && pnpm build:release",
20
+ "build:release": "tsup",
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",
25
+ "prepare": "husky",
26
+ "prepublishOnly": "pnpm build:release",
27
+ "prepack": "node scripts/pre-publish-check.js",
28
+ "publish:check": "node scripts/pre-publish-check.js",
29
+ "publish:patch": "bash scripts/publish.sh patch",
30
+ "publish:minor": "bash scripts/publish.sh minor",
31
+ "publish:major": "bash scripts/publish.sh major"
32
+ },
33
+ "keywords": [
34
+ "browser",
35
+ "automation",
36
+ "ai",
37
+ "agent",
38
+ "chrome",
39
+ "extension",
40
+ "cli",
41
+ "puppeteer",
42
+ "playwright",
43
+ "cdp",
44
+ "mcp"
45
+ ],
46
+ "author": "",
47
+ "license": "MIT",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/skVPN/bb-browser-api.git"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/skVPN/bb-browser-api/issues"
54
+ },
55
+ "homepage": "https://github.com/skVPN/bb-browser-api#readme",
56
+ "engines": {
57
+ "node": ">=18.0.0"
58
+ },
59
+ "packageManager": "pnpm@9.15.0",
60
+ "dependencies": {
61
+ "@bufbuild/protobuf": "^2.11.0",
62
+ "@connectrpc/connect": "^2.1.1",
63
+ "@connectrpc/connect-node": "^2.1.1",
64
+ "@modelcontextprotocol/sdk": "^1.12.1",
65
+ "@pinixai/hub-client": "^0.1.2",
66
+ "ajv": "^8.17.1",
67
+ "ajv-formats": "^3.0.1",
68
+ "ws": "^8.18.0"
69
+ },
70
+ "devDependencies": {
71
+ "@eslint/js": "^9.23.0",
72
+ "eslint": "^9.23.0",
73
+ "globals": "^16.0.0",
74
+ "husky": "^9.1.7",
75
+ "tsup": "^8.0.0",
76
+ "tsx": "^4.20.6",
77
+ "turbo": "^2.3.0",
78
+ "typescript": "^5.7.0",
79
+ "typescript-eslint": "^8.29.0"
80
+ }
81
+ }