mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
Adds js/ package mirroring the Python wrapper architecture: - Dual API: import from 'cloakbrowser' (Playwright) or 'cloakbrowser/puppeteer' - TypeScript with full type definitions - Same binary download/cache logic, same stealth args, same env vars - Optional peer deps: users install only the runtime they need - Full 6-site stealth test suite (sannysoft, incolumitas, BrowserScan, deviceandbrowserinfo, FingerprintJS, reCAPTCHA v3) - Published to npm as cloakbrowser@0.1.2
57 lines
539 B
Plaintext
57 lines
539 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Binary cache (downloaded chromium)
|
|
.cloakbrowser/
|
|
|
|
# Claude Code (private project context)
|
|
CLAUDE.md
|
|
.claude/
|
|
|
|
# JavaScript / Node.js
|
|
js/node_modules/
|
|
js/dist/
|
|
|
|
# Distribution
|
|
*.tar.gz
|
|
*.whl
|
|
AGENTS.md
|
|
.beads
|
|
|
|
# Private docs (launch posts, strategy)
|
|
docs/
|
|
|
|
# Release scripts
|
|
publish.sh
|
|
deploy.sh
|
|
.env
|