-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.14 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
{
"name": "cfsolver",
"version": "1.0.4",
"description": "Node.js HTTP client that automatically bypasses Cloudflare challenges using the CloudFlyer API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cfsolver": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"cloudflare",
"bypass",
"captcha",
"turnstile",
"solver",
"anti-bot",
"linksocks"
],
"author": "CloudFlyer Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudflyer-project/cloudflyer-nodejs-sdk"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"pako": "^2.1.0",
"uuid": "^11.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/pako": "^2.0.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.10",
"typescript": "^5.3.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}