silent-akinator-pro 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.
Files changed (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # 🧞 SILENT-AKINATOR PRO 🧞
2
+ ### 🛡️ THE ONLY BYPASS-READY AKINATOR SDK
3
+
4
+ Are you tired of the **"Failed to get session and signature"** error on your WhatsApp Bot?
5
+ Standard libraries like `aki-api` are blocked by Cloudflare on VPS/Pterodactyl.
6
+
7
+ **Silent-Akinator Pro** uses the **Silent-Tech Proxy-Shield** to rotate through 10 private residential proxies automatically, ensuring your game never crashes.
8
+
9
+ ## 🚀 INSTALLATION
10
+ ```bash
11
+ npm install silent-akinator-pro
12
+ ```
13
+
14
+ ## 💻 QUICK START
15
+ ```javascript
16
+ const SilentAki = require('silent-akinator-pro');
17
+ const aki = new SilentAki('en');
18
+
19
+ (async () => {
20
+ const firstQuestion = await aki.start();
21
+ console.log(firstQuestion.question);
22
+ })();
23
+ ```
24
+
25
+ ## 👑 FEATURES
26
+ - ✅ **Auto-Proxy Rotation:** 10 Private proxies built-in.
27
+ - ✅ **VPS Optimized:** Works on Pterodactyl, Heroku, and Railway.
28
+ - ✅ **Anti-Cloudflare:** Mimics real browser fingerprints.
29
+
30
+ Built by **Silent Tech** 💀
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "silent-akinator-pro",
3
+ "version": "1.0.0",
4
+ "description": "The only Akinator API that bypasses VPS/Pterodactyl blocks using Silent-Tech Proxy-Shield.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": ["akinator", "whatsapp-bot", "proxy", "bypass"],
10
+ "author": "Silent Tech",
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "axios": "^1.6.0",
14
+ "https-proxy-agent": "^7.0.2"
15
+ }
16
+ }