-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.94 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
{
"name": "anybrowse",
"version": "1.0.4",
"bin": {
"anybrowse-signup": "bin/signup.mjs"
},
"description": "Autonomous web browsing agent — converts any URL to clean, LLM-ready Markdown via x402 micropayments",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"postbuild": "node dist/patch-playwright.js 2>/dev/null || true && cp src/proxies.json dist/proxies.json 2>/dev/null || true && (cp -r src/public dist/public 2>/dev/null || true)",
"typecheck": "tsc --noEmit",
"postinstall": "node dist/patch-playwright.js 2>/dev/null || true"
},
"keywords": [
"agent",
"autonomous",
"web-browsing",
"scraper",
"markdown",
"x402",
"a2a"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@browsercash/pool": "git+https://github.com/Mega-Tera/browser-pool.git",
"@browsercash/sdk": "^0.4.0",
"@coinbase/cdp-sdk": "^1.44.1",
"@farcaster/core": "^0.18.10",
"@fastify/cors": "^10.0.1",
"@mozilla/readability": "^0.6.0",
"@neynar/nodejs-sdk": "^3.137.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^28.0.0",
"@x402/core": "^2.4.0",
"@x402/evm": "^2.4.0",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.5",
"fastify": "^5.7.4",
"fastify-plugin": "^5.1.0",
"jsdom": "^28.1.0",
"node-html-markdown": "^1.3.0",
"nodemailer": "^8.0.1",
"playwright-core": "^1.57.0",
"playwright-extra": "^4.3.6",
"posthog-node": "^5.28.0",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rebrowser-patches": "^1.0.19",
"ssh2": "^1.17.0",
"stripe": "^17.7.0",
"viem": "^2.46.2",
"x402": "^1.1.0",
"x402-express": "^1.1.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/nodemailer": "^7.0.11",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
}
}