-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 KB
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
71
{
"name": "solvecaptcha-javascript",
"version": "1.0.1",
"description": "Node.js wrapper for SolveCaptcha.com API. Bypass recaptcha, cloudflare capthca and more.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/solvercaptcha/solvecaptcha-javascript.git"
},
"license": "MIT",
"author": "Solvecaptcha",
"bugs": {
"url": "hhttps://github.com/solvercaptcha/solvecaptcha-javascript/issues"
},
"homepage": "https://github.com/solvercaptcha/solvecaptcha-javascript",
"types": "dist/index.d.ts",
"keywords": [
"solvecaptcha",
"reCAPTCHA",
"FunCaptcha",
"Cloudflare Turnstile",
"captcha",
"api",
"captchasolver",
"capmonster",
"Geetest",
"image captcha",
"Coordinates",
"Click Captcha",
"Geetest V4",
"Yandex Smart Captcha",
"Lemin captcha",
"bypass captcha",
"solve captcha",
"Amazon WAF",
"Capy Puzzle",
"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",
"compile": "tsc",
"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": {
"@types/node-fetch": "^2.6.12",
"form-data": "^4.0.2",
"node-fetch": "^2.7.0",
"undici": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.8.7",
"dotenv": "^16.0.3",
"jaguarjs-jsdoc": "^1.0.2",
"jsdoc": "^4.0.2",
"typescript": "^4.9.4"
}
}