@adminforth/login-captcha 1.1.9 → 1.1.11
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/README.md +31 -0
- package/package.json +4 -2
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# AdminForth Login Captcha Plugin
|
|
2
|
+
|
|
3
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT" /> <img src="https://woodpecker.devforth.io/api/badges/3848/status.svg" alt="Build Status" /> <a href="https://www.npmjs.com/package/@adminforth/login-captcha"><img src="https://img.shields.io/npm/dm/@adminforth/login-captcha" alt="npm downloads" /></a> <a href="https://www.npmjs.com/package/@adminforth/login-captcha"><img src="https://img.shields.io/npm/v/@adminforth/login-captcha" alt="npm version" /></a>
|
|
4
|
+
|
|
5
|
+
[](https://tluma.ai/ask-ai/devforth/adminforth)
|
|
6
|
+
|
|
7
|
+
Protects the AdminForth login page with CAPTCHA validation.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Protect the AdminForth login page with CAPTCHA validation.
|
|
12
|
+
- Reduce automated login abuse and bot traffic.
|
|
13
|
+
- Add an extra verification step to sign-in flows.
|
|
14
|
+
- Integrate bot protection into existing auth logic.
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
Full setup and configuration guide:
|
|
19
|
+
|
|
20
|
+
[AdminForth Login Captcha Documentation](https://adminforth.dev/docs/tutorial/Plugins/login-captcha/)
|
|
21
|
+
|
|
22
|
+
## About AdminForth
|
|
23
|
+
|
|
24
|
+
AdminForth is an open-source, agent-first admin framework for building robust admin panels and back-office applications faster.
|
|
25
|
+
|
|
26
|
+
## Related links
|
|
27
|
+
|
|
28
|
+
- [AdminForth website](https://adminforth.dev)
|
|
29
|
+
- [npm package](https://www.npmjs.com/package/@adminforth/login-captcha)
|
|
30
|
+
- [More AdminForth plugins](https://adminforth.dev/docs/tutorial/ListOfPlugins/)
|
|
31
|
+
- [Built by DevForth](https://devforth.io)
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/login-captcha",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.11",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"homepage": "https://adminforth.dev/docs/tutorial/Plugins/login-captcha/",
|
|
7
8
|
"publishConfig": {
|
|
8
9
|
"access": "public"
|
|
9
10
|
},
|
|
@@ -16,12 +17,13 @@
|
|
|
16
17
|
"description": "",
|
|
17
18
|
"devDependencies": {
|
|
18
19
|
"@types/node": "latest",
|
|
20
|
+
"adminforth": "^2.42.0",
|
|
19
21
|
"semantic-release": "^24.2.1",
|
|
20
22
|
"semantic-release-slack-bot": "^4.0.2",
|
|
21
23
|
"typescript": "^5.7.3"
|
|
22
24
|
},
|
|
23
25
|
"peerDependencies": {
|
|
24
|
-
"adminforth": "^2.
|
|
26
|
+
"adminforth": "^2.42.0"
|
|
25
27
|
},
|
|
26
28
|
"release": {
|
|
27
29
|
"plugins": [
|