├── .commitlintrc.json ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .release-it.json ├── README.md ├── assets └── logo.png ├── example └── index.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── base64.ts ├── images.ts ├── index.ts ├── target.ts ├── type.ts └── utils.ts └── tsconfig.json /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | lib 4 | pnpm-lock.yaml 5 | example 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | puppeteer_skip_download=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | lib 4 | pnpm-lock.yaml 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/.release-it.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/assets/logo.png -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/example/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/src/base64.ts -------------------------------------------------------------------------------- /src/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/src/images.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/src/target.ts -------------------------------------------------------------------------------- /src/type.ts: -------------------------------------------------------------------------------- 1 | export type subscriptionType = 'free' | 'pro'; 2 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noCaptchaAi/nocaptchaai-puppeteer/HEAD/tsconfig.json --------------------------------------------------------------------------------