@kangwifi-pro/waliwa 1.2.1 → 2.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/dist/community/community-fixes.d.ts +1 -1
- package/dist/index.d.ts +13 -53
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +25 -249
- package/dist/index.js.map +1 -1
- package/dist/socket/wa-socket.d.ts +20 -20
- package/dist/socket/wa-socket.d.ts.map +1 -1
- package/package.json +11 -36
- package/proto/WAProto.proto +0 -3344
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kangwifi-pro/waliwa",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "WhatsApp library based on Baileys 7 (proven working) + Multi-Branch SKDM Recovery + Community Features + SKDM. Fork of Baileys with extra features.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -10,11 +10,6 @@
|
|
|
10
10
|
"require": "./dist/index.js",
|
|
11
11
|
"import": "./dist/index.js"
|
|
12
12
|
},
|
|
13
|
-
"./types": {
|
|
14
|
-
"types": "./dist/types/index.d.ts",
|
|
15
|
-
"require": "./dist/types/index.js",
|
|
16
|
-
"import": "./dist/types/index.js"
|
|
17
|
-
},
|
|
18
13
|
"./package.json": "./package.json"
|
|
19
14
|
},
|
|
20
15
|
"publishConfig": {
|
|
@@ -23,8 +18,6 @@
|
|
|
23
18
|
"scripts": {
|
|
24
19
|
"build": "tsc -p tsconfig.json",
|
|
25
20
|
"dev": "ts-node examples/echo-bot/index.ts",
|
|
26
|
-
"lint": "eslint src --ext .ts",
|
|
27
|
-
"test": "jest",
|
|
28
21
|
"prepublishOnly": "npm run build"
|
|
29
22
|
},
|
|
30
23
|
"keywords": [
|
|
@@ -32,15 +25,17 @@
|
|
|
32
25
|
"bot",
|
|
33
26
|
"wa-web",
|
|
34
27
|
"multi-device",
|
|
35
|
-
"reverse-engineering",
|
|
36
28
|
"baileys",
|
|
37
|
-
"
|
|
29
|
+
"baileys-fork",
|
|
38
30
|
"lightweight",
|
|
39
31
|
"ram-efficient",
|
|
40
32
|
"noise-protocol",
|
|
41
33
|
"protobuf",
|
|
42
34
|
"pairing-code",
|
|
43
|
-
"qr-code"
|
|
35
|
+
"qr-code",
|
|
36
|
+
"skdm",
|
|
37
|
+
"recovery",
|
|
38
|
+
"community-features"
|
|
44
39
|
],
|
|
45
40
|
"author": "waliwa contributors",
|
|
46
41
|
"license": "MIT",
|
|
@@ -49,36 +44,16 @@
|
|
|
49
44
|
},
|
|
50
45
|
"files": [
|
|
51
46
|
"dist/**/*",
|
|
52
|
-
"proto/**/*",
|
|
53
47
|
"README.md",
|
|
54
48
|
"LICENSE"
|
|
55
49
|
],
|
|
56
50
|
"dependencies": {
|
|
57
|
-
"@
|
|
58
|
-
"
|
|
59
|
-
"@noble/hashes": "^1.4.0",
|
|
60
|
-
"axios": "^1.6.7",
|
|
61
|
-
"protobufjs": "^7.6.5",
|
|
62
|
-
"qrcode-terminal": "^0.12.0",
|
|
63
|
-
"ws": "^8.16.0"
|
|
51
|
+
"@whiskeysockets/baileys": "7.0.0-rc14",
|
|
52
|
+
"qrcode-terminal": "^0.12.0"
|
|
64
53
|
},
|
|
65
54
|
"devDependencies": {
|
|
66
55
|
"@types/node": "^20.11.20",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
70
|
-
"eslint": "^8.56.0",
|
|
71
|
-
"jest": "^29.7.0",
|
|
72
|
-
"ts-jest": "^29.1.2",
|
|
73
|
-
"ts-node": "^10.9.2",
|
|
74
|
-
"typescript": "^5.3.3"
|
|
75
|
-
},
|
|
76
|
-
"peerDependenciesMeta": {
|
|
77
|
-
"openai": {
|
|
78
|
-
"optional": true
|
|
79
|
-
},
|
|
80
|
-
"express": {
|
|
81
|
-
"optional": true
|
|
82
|
-
}
|
|
56
|
+
"typescript": "^5.3.3",
|
|
57
|
+
"ts-node": "^10.9.2"
|
|
83
58
|
}
|
|
84
59
|
}
|