@webdecoy/fcaptcha 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/detection.js +442 -0
- package/index.js +799 -0
- package/package.json +51 -0
- package/server.js +842 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@webdecoy/fcaptcha",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Open source CAPTCHA with PoW, bot detection, and Vision AI protection",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./index.js",
|
|
8
|
+
"./detection": "./detection.js",
|
|
9
|
+
"./server": "./server.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"start": "node server.js",
|
|
13
|
+
"dev": "node --watch server.js"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"express": "^4.18.2",
|
|
17
|
+
"cors": "^2.8.5",
|
|
18
|
+
"redis": "^4.6.12"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"express": "^4.18.0"
|
|
22
|
+
},
|
|
23
|
+
"peerDependenciesMeta": {
|
|
24
|
+
"express": {
|
|
25
|
+
"optional": true
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18.0.0"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/webdecoy/fcaptcha"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"captcha",
|
|
37
|
+
"bot-detection",
|
|
38
|
+
"proof-of-work",
|
|
39
|
+
"security",
|
|
40
|
+
"anti-bot",
|
|
41
|
+
"vision-ai",
|
|
42
|
+
"recaptcha-alternative",
|
|
43
|
+
"turnstile-alternative"
|
|
44
|
+
],
|
|
45
|
+
"author": "WebDecoy",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/webdecoy/fcaptcha/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/webdecoy/fcaptcha#readme"
|
|
51
|
+
}
|