forked from Furry/2captcha
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "2captcha-ts",
"version": "2.3.6",
"description": "JavaScript library for easy integration with the API of 2captcha captcha solving service to bypass reCAPTCHA, hCaptcha, funcaptcha, geetest and solve any other captchas.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dzmitry-duboyski/2captcha-ts.git"
},
"license": "MIT",
"author": "Dima Dub",
"bugs": {
"url": "https://github.com/dzmitry-duboyski/2captcha-ts/issues"
},
"homepage": "https://github.com/dzmitry-duboyski/2captcha-ts",
"types": "dist/index.d.ts",
"keywords": [
"2captcha",
"captcha",
"api",
"captchasolver",
"capmonster",
"reCAPTCHA",
"hCaptcha",
"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"
],
"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"
}
}