-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.8 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
{
"name": "cloudscraper.js",
"description": "Python based CloudFlare bypass. Utilizes [VeNoMouS's CloudScraper](https://github.com/VeNoMouS/cloudscraper) project to bypass CloudFlare. All credit goes to him.",
"version": "0.2.0",
"main": "./built/cloudscraper-js.js",
"bin": {
"cloudscraper-mcp": "./built/mcp/bin.js"
},
"scripts": {
"test": "node test.js",
"pretest:unit": "npm run build",
"test:unit": "node --test tests/*.test.js",
"pretest:cov": "npm run build",
"test:cov": "node --test --experimental-test-coverage tests/*.test.js",
"build": "rm -rf built && npm run build:ts",
"build:ts": "tsc --build",
"clean": "rm -rf built && tsc --build --clean",
"bench": "node scripts/bench.mjs",
"mcp": "node built/mcp/bin.js",
"install-deps": "node scripts/install-dependencies.js",
"install-python": "python3 scripts/install-python.py",
"setup": "npm run build && npm run install-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maarkN/cloudscraper.js.git"
},
"keywords": [
"cloudflare",
"request",
"bypass"
],
"author": "maarkN <markimkr@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/maarkN/cloudscraper.js/issues"
},
"homepage": "https://github.com/maarkN/cloudscraper.js#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cheerio": "^1.0.0-rc.12",
"js-base64": "^3.7.3",
"lodash": "^4.17.21",
"node-html-markdown": "^2.0.0",
"zod": "^4.4.3"
},
"peerDependencies": {
"@langchain/core": ">=0.3.0"
},
"peerDependenciesMeta": {
"@langchain/core": {
"optional": true
}
},
"devDependencies": {
"@types/lodash": "^4.17.18",
"@types/node": "^18.11.13",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
}
}