mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
page.wait_for_timeout() sends CDP protocol commands that reCAPTCHA and other antibot systems detect. Replaced with time.sleep() (Python) which is invisible to the browser. - examples/stealth_test.py: 7 replacements - examples/recaptcha_score.py: 1 replacement - tests/test_stealth.py: 7 replacements - README.md + js/README.md: added reCAPTCHA troubleshooting section - Bump version to 0.2.2
78 lines
1.6 KiB
JSON
78 lines
1.6 KiB
JSON
{
|
|
"name": "cloakbrowser",
|
|
"version": "0.2.2",
|
|
"description": "Stealth Chromium that passes every bot detection test. Drop-in Playwright/Puppeteer replacement with source-level fingerprint patches.",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./puppeteer": {
|
|
"types": "./dist/puppeteer.d.ts",
|
|
"import": "./dist/puppeteer.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"stealth",
|
|
"browser",
|
|
"chromium",
|
|
"playwright",
|
|
"puppeteer",
|
|
"scraping",
|
|
"anti-detect",
|
|
"bot-detection",
|
|
"fingerprint",
|
|
"recaptcha",
|
|
"cloudflare",
|
|
"datadome"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CloakHQ/cloakbrowser",
|
|
"directory": "js"
|
|
},
|
|
"homepage": "https://github.com/CloakHQ/cloakbrowser#javascript--nodejs",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"mmdb-lib": ">=2.0.0",
|
|
"playwright-core": ">=1.40.0",
|
|
"puppeteer-core": ">=21.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"playwright-core": {
|
|
"optional": true
|
|
},
|
|
"puppeteer-core": {
|
|
"optional": true
|
|
},
|
|
"mmdb-lib": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"tar": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"mmdb-lib": "^3.0.2",
|
|
"playwright-core": "^1.40.0",
|
|
"puppeteer-core": "^21.0.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^1.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
}
|
|
}
|