ai-md-baileys 1.0.0 → 1.0.3

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  <div align="center">
2
- <h1>Mrxd-Baileys</h1>
2
+ <h1>Ai Md Baileys</h1>
3
3
  <p>A WebSocket-based JavaScript library for interacting with the WhatsApp Web API</p>
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/mrxd-baileys.svg)](https://www.npmjs.com/package/ai-md-baileys)
5
+ [![npm version](https://img.shields.io/npm/v/ai-md-baileys.svg)](https://www.npmjs.com/package/ai-md-baileys)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/ai-md-baileys.svg)](https://www.npmjs.com/package/ai-md-baileys)
7
- [![License](https://img.shields.io/npm/l/mrxd-baileys.svg)](https://github.com/Boy-Offi9/ai-md-baileys/blob/main/LICENSE)
7
+ [![License](https://img.shields.io/npm/l/ai-md-baileys.svg)](https://github.com/Boy-Offi9/ai-md-baileys/blob/main/LICENSE)
8
8
  </div>
9
9
 
10
10
  ## Disclaimer
package/package.json CHANGED
@@ -1,32 +1,46 @@
1
1
  {
2
- "name": "ai-md-baileys",
3
- "version": "1.0.0",
4
- "description": "A lightweight, full-featured WhatsApp Web API library for Node.js",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
7
- "homepage": "",
8
- "author": "Boy Offi9 Inc",
9
- "license": "MIT",
10
- "keywords": [
11
- "whatsapp",
12
- "whatsapp-api",
13
- "whatsapp-web",
14
- "baileys",
15
- "whatsapp-bot",
16
- "messaging",
17
- "chat"
18
- ],
19
- "dependencies": {
20
- "@cacheable/node-cache": "^1.4.0",
21
- "@hapi/boom": "^9.1.3",
22
- "async-mutex": "^0.5.0",
23
- "axios": "^1.6.0",
24
- "libsignal": "github:WhiskeySockets/libsignal-node",
25
- "lodash": "^4.17.21",
26
- "music-metadata": "^7.12.3",
27
- "node-fetch": "^2.6.1",
28
- "pino": "^9.6",
29
- "protobufjs": "^7.2.4",
30
- "ws": "^8.13.0"
31
- }
32
- }
2
+ "name": "ai-md-baileys",
3
+ "version": "1.0.3",
4
+ "description": "Modified Baileys WhatsApp Web API library",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "files": [
8
+ "lib",
9
+ "WAProto"
10
+ ],
11
+ "homepage": "https://github.com/SystemvError/ai-md-baileys",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/SystemvError/ai-md-baileys.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/SystemvError/ai-md-baileys/issues"
18
+ },
19
+ "author": "Boy Offi9 Inc",
20
+ "license": "MIT",
21
+ "keywords": [
22
+ "whatsapp",
23
+ "whatsapp-api",
24
+ "whatsapp-web",
25
+ "baileys",
26
+ "whatsapp-bot",
27
+ "messaging",
28
+ "chat"
29
+ ],
30
+ "dependencies": {
31
+ "@cacheable/node-cache": "^1.4.0",
32
+ "@hapi/boom": "^9.1.3",
33
+ "async-mutex": "^0.5.0",
34
+ "axios": "^1.6.0",
35
+ "libsignal": "github:WhiskeySockets/libsignal-node",
36
+ "lodash": "^4.17.21",
37
+ "music-metadata": "^7.12.3",
38
+ "node-fetch": "^2.6.1",
39
+ "pino": "^9.6",
40
+ "protobufjs": "^7.2.4",
41
+ "ws": "^8.13.0"
42
+ },
43
+ "devDependencies": {
44
+ "typescript": "^5.0.0"
45
+ }
46
+ }
@@ -1,10 +0,0 @@
1
- const major = parseInt(process.versions.node.split('.')[0], 10);
2
-
3
- if (major < 20) {
4
- console.error(
5
- `\n❌ This package requires Node.js 20+ to run reliably.\n` +
6
- ` You are using Node.js ${process.versions.node}.\n` +
7
- ` Please upgrade to Node.js 20+ to proceed.\n`
8
- );
9
- process.exit(1);
10
- }
package/test.js DELETED
@@ -1,7 +0,0 @@
1
- const baileys = require('./lib/index.js');
2
-
3
- console.log('=== ai-md-baileys Library Test ===\n');
4
- console.log('Library loaded successfully!');
5
- console.log('\nAvailable exports:');
6
- console.log(Object.keys(baileys).join('\n'));
7
- console.log('\n=== Library is ready to use ===');