-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.05 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": "@captcha-solver-api/javascript-sdk",
"version": "1.0.0",
"description": "Official JavaScript SDK for the Captcha Solver API. Solve reCAPTCHA v2, Cloudflare Turnstile, GeeTest, Tencent, and image captchas.",
"main": "./dist/index.cjs",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./tasks": {
"types": "./dist/tasks.d.ts",
"import": "./dist/tasks.js",
"require": "./dist/tasks.cjs"
},
"./exceptions": {
"types": "./dist/exceptions.d.ts",
"import": "./dist/exceptions.js",
"require": "./dist/exceptions.cjs"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "tsup src/index.ts src/tasks.ts src/exceptions.ts --format esm,cjs --dts --clean",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:unit": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit",
"test:integration": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js tests/integration",
"prepublishOnly": "npm run test:unit -- --runInBand"
},
"keywords": [
"captcha-solver",
"captcha-solving",
"recaptcha-v2",
"cloudflare-turnstile",
"geetest",
"tencent-captcha",
"image-to-text",
"captcha-recognition",
"captcha-bypass",
"captcha-api"
],
"author": "Captcha Solver",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"dotenv": "^16.4.0",
"jest": "^29.7.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/captcha-solver-api/javascript-sdk"
},
"bugs": {
"url": "https://github.com/captcha-solver-api/javascript-sdk/issues"
},
"homepage": "https://github.com/captcha-solver-api/javascript-sdk#readme",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"overrides": {
"esbuild": "0.28.1"
}
}