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