-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.06 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
82
83
84
85
86
{
"name": "runagent-superbrowser",
"version": "0.1.0",
"description": "The browser your agent won't get blocked on — a stealth Puppeteer engine with captcha/Cloudflare handling, exposed over HTTP and MCP.",
"type": "module",
"license": "MIT",
"author": "RunAgent",
"homepage": "https://github.com/runagent-dev/runagent-superbrowser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/runagent-dev/runagent-superbrowser.git"
},
"bugs": {
"url": "https://github.com/runagent-dev/runagent-superbrowser/issues"
},
"keywords": [
"browser",
"puppeteer",
"stealth",
"captcha",
"cloudflare",
"mcp",
"agent",
"automation",
"scraping",
"anti-bot",
"anti-detect"
],
"engines": {
"node": ">=20"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"bin": {
"superbrowser": "bin/superbrowser.js",
"runagent-superbrowser": "bin/superbrowser.js",
"superbrowser-doctor": "bin/superbrowser-doctor.js"
},
"files": [
"build/",
"bin/",
".env.example",
"STEALTH.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node build/index.js",
"doctor": "node bin/superbrowser-doctor.js",
"test": "vitest run",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"dotenv": "^16.4.0",
"express": "^5.1.0",
"jsonrepair": "^3.8.0",
"openai": "^4.80.0",
"puppeteer-core": "^24.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sharp": "^0.33.0",
"tiktoken": "^1.0.0",
"ws": "^8.20.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}