ai-appshield 1.0.0 → 1.0.1
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 +12 -0
- package/dist/cli.js +1 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
**NPM wrapper to protect your applications from AI scrapers, bots, and reverse-engineering attempts.**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/ai-appshield)
|
|
6
|
+
[](https://github.com/tandin2000/AI-AppShield)
|
|
7
|
+
|
|
8
|
+
- **npm:** [ai-appshield](https://www.npmjs.com/package/ai-appshield)
|
|
9
|
+
- **GitHub:** [tandin2000/AI-AppShield](https://github.com/tandin2000/AI-AppShield)
|
|
10
|
+
|
|
5
11
|
Install it like any npm package, use the CLI to scaffold protection into your project, and enable client + server guards with a few lines of code.
|
|
6
12
|
|
|
7
13
|
## Features
|
|
@@ -220,3 +226,9 @@ Uses Node.js built-in test runner (`node:test`). Tests live alongside source as
|
|
|
220
226
|
## License
|
|
221
227
|
|
|
222
228
|
MIT
|
|
229
|
+
|
|
230
|
+
## Links
|
|
231
|
+
|
|
232
|
+
- [GitHub Repository](https://github.com/tandin2000/AI-AppShield)
|
|
233
|
+
- [npm Package](https://www.npmjs.com/package/ai-appshield)
|
|
234
|
+
- [Report an Issue](https://github.com/tandin2000/AI-AppShield/issues)
|
package/dist/cli.js
CHANGED
|
@@ -41,7 +41,7 @@ const program = new commander_1.Command();
|
|
|
41
41
|
program
|
|
42
42
|
.name('ai-appshield')
|
|
43
43
|
.description('CLI to wrap and protect your application from bots and AI scrapers')
|
|
44
|
-
.version('1.0.
|
|
44
|
+
.version('1.0.1');
|
|
45
45
|
program
|
|
46
46
|
.command('init')
|
|
47
47
|
.description('Initialize ai-appshield in your project')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-appshield",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "NPM wrapper to protect applications from AI scrapers, bots, and reverse-engineering attempts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -49,8 +49,16 @@
|
|
|
49
49
|
"rate-limit",
|
|
50
50
|
"security"
|
|
51
51
|
],
|
|
52
|
-
"author": "",
|
|
52
|
+
"author": "tandin2000",
|
|
53
53
|
"license": "MIT",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "git+https://github.com/tandin2000/AI-AppShield.git"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/tandin2000/AI-AppShield/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/tandin2000/AI-AppShield#readme",
|
|
54
62
|
"engines": {
|
|
55
63
|
"node": ">=18"
|
|
56
64
|
},
|