forked from dzmitry-duboyski/2captcha-ts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.77 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@2captcha/captcha-solver",
"version": "1.3.0",
"description": "JavaScript library for easy integration with the API of 2captcha captcha solving service to bypass reCAPTCHA, funcaptcha, geetest and solve any other captchas.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/2captcha/2captcha-javascript.git"
},
"license": "MIT",
"author": "2Captcha",
"bugs": {
"url": "https://github.com/2captcha/2captcha-javascript/issues"
},
"homepage": "https://github.com/2captcha/2captcha-javascript",
"types": "dist/index.d.ts",
"keywords": [
"2captcha",
"captcha",
"api",
"captchasolver",
"capmonster",
"reCAPTCHA",
"FunCaptcha",
"Geetest",
"image captcha",
"Coordinates",
"Click Captcha",
"Geetest V4",
"Yandex Smart Captcha",
"Lemin captcha",
"bypass captcha",
"solve captcha",
"Amazon WAF",
"Cloudflare Turnstile",
"Capy Puzzle",
"行为验证4.0",
"行为验证",
"DataDome CAPTCHA",
"CyberSiARA",
"MTCaptcha",
"Bounding Box Method",
"Friendly Captcha",
"Text Captcha",
"Canvas",
"Rotate",
"KeyCaptcha",
"Cutcaptcha",
"Tencent",
"atbCAPTCHA",
"Audio Recognition"
],
"scripts": {
"build": "tsc && node ./dist/index.js",
"jsdoc": "jsdoc",
"docgen": "tsc && yarn jsdoc ./dist -R \"./readme.md\" -P \"./package.json\" -t \"./node_modules/jaguarjs-jsdoc\" -d \"./docs\" -r",
"example": "tsc && node ./tests/mtCaptcha.js"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@types/node-fetch": "^2.5.7",
"dotenv": "^16.0.3",
"jaguarjs-jsdoc": "^1.0.2",
"jsdoc": "^4.0.2",
"typescript": "^4.9.4"
}
}