-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 788 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 788 Bytes
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
{
"name": "chameleon",
"version": "1.0.0",
"description": "Adaptive web crawler designed to bypass bot detection and enable comprehensive AI-assisted research",
"main": "src/index.js",
"bin": {
"chameleon": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "node tests/fetch.test.js"
},
"keywords": [
"web-crawler",
"scraper",
"stealth",
"playwright"
],
"author": "",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"node-fetch": "^3.3.2",
"playwright": "^1.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"type": "module"
}