-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 928 Bytes
/
package.json
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": "puppeteer-bypass",
"version": "0.0.1",
"description": "Uses puppeteer to bypass CloudFlare's anti-bot protection",
"repository": {
"type": "git",
"url": "git+https://github.com/Eltik/puppeteer-bypass.git"
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc --build",
"clean": "tsc --build --clean",
"test": "node test.js"
},
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"express": "^4.18.2",
"puppeteer": "^21.3.6",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@types/node": "^20.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}