From 924caf50519a4114027dd6ecdd65840abaee6b0c Mon Sep 17 00:00:00 2001 From: dzmitry-duboyski Date: Thu, 27 Jun 2024 06:51:23 +0400 Subject: [PATCH] fix --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cac21b7..8fa43cb 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,11 @@ The easiest way to quickly integrate the [2Captcha](https://2captcha.com/) captc This package can be installed with NPM: ```sh -npm install @2captcha/captcha-solver +npm install 2captcha-ts ``` or Yarn: ```sh -yarn add @2captcha/captcha-solver +yarn add 2captcha-ts ``` ## Configuration @@ -58,7 +58,7 @@ yarn add @2captcha/captcha-solver TwoCaptcha instance can be created like this: ```js -const TwoCaptcha = require("@2captcha/captcha-solver") +const TwoCaptcha = require("2captcha-ts") const solver = new TwoCaptcha.Solver("") ```