zaileys 1.1.32 → 1.1.34
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/CHANGELOG.md +92 -0
- package/README.md +565 -294
- package/package.json +42 -35
- package/dist/index.d.mts +0 -2719
- package/dist/index.d.ts +0 -2719
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/examples/citation.ts +0 -25
- package/examples/limiter.ts +0 -23
- package/examples/llms.ts +0 -37
- package/examples/simple.ts +0 -16
- package/examples/speech.ts +0 -36
- package/examples/webhooks.ts +0 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zaileys",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.34",
|
|
4
4
|
"description": "Zaileys - Simplified WhatsApp Node.js API",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -12,11 +12,6 @@
|
|
|
12
12
|
"types": "./dist/index.d.ts"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsup",
|
|
17
|
-
"dev": "tsx watch examples/speech.ts",
|
|
18
|
-
"clean": "rm -rf dist session"
|
|
19
|
-
},
|
|
20
15
|
"keywords": [
|
|
21
16
|
"zaileys",
|
|
22
17
|
"whatsapp",
|
|
@@ -30,6 +25,7 @@
|
|
|
30
25
|
"automation",
|
|
31
26
|
"multi-device"
|
|
32
27
|
],
|
|
28
|
+
"license": "MIT",
|
|
33
29
|
"homepage": "https://github.com/zeative/zaileys",
|
|
34
30
|
"funding": "https://saweria.co/zaadevofc",
|
|
35
31
|
"repository": {
|
|
@@ -43,39 +39,50 @@
|
|
|
43
39
|
"email": "zaadevofc@gmail.com",
|
|
44
40
|
"url": "https://github.com/zeative"
|
|
45
41
|
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"build:mem": "node --max-old-space-size=4096 node_modules/tsup/dist/cli-default.js",
|
|
45
|
+
"build:split": "tsup --config tsup.config.js",
|
|
46
|
+
"build:script": "node scripts/build.js",
|
|
47
|
+
"dev": "tsx watch examples/test.ts",
|
|
48
|
+
"clean": "rm -rf dist sessions",
|
|
49
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
50
|
+
"lint": "npx tsc --noEmit",
|
|
51
|
+
"lint:fix": "eslint src/ --ext .ts --fix"
|
|
52
|
+
},
|
|
46
53
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
54
|
+
"node": ">=20"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"audio-decode": "^2.2.3",
|
|
58
|
+
"baileys": "github:zeative/zproto",
|
|
59
|
+
"chalk": "^4.1.2",
|
|
60
|
+
"figlet": "1.8.1",
|
|
61
|
+
"jimp": "^1.6.0",
|
|
62
|
+
"lodash": "^4.17.21",
|
|
63
|
+
"lowdb": "1.0.0",
|
|
64
|
+
"nanospinner": "^1.2.2",
|
|
65
|
+
"node-cache": "^5.1.2",
|
|
66
|
+
"pino": "^9.7.0",
|
|
67
|
+
"qrcode": "^1.5.4",
|
|
68
|
+
"zod": "^4.0.17"
|
|
48
69
|
},
|
|
49
|
-
"license": "MIT",
|
|
50
70
|
"devDependencies": {
|
|
51
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
52
|
-
"@types/fast-levenshtein": "^0.0.4",
|
|
53
71
|
"@types/figlet": "^1.7.0",
|
|
54
|
-
"@types/
|
|
55
|
-
"@types/
|
|
72
|
+
"@types/lodash": "^4.17.20",
|
|
73
|
+
"@types/lowdb": "^1.0.9",
|
|
56
74
|
"@types/qrcode": "^1.5.5",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
|
76
|
+
"@typescript-eslint/parser": "^8.40.0",
|
|
77
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
78
|
+
"eslint": "^9.34.0",
|
|
79
|
+
"terser": "^5.43.1",
|
|
80
|
+
"tsup": "^8.5.0",
|
|
81
|
+
"typescript": "5.8.3",
|
|
82
|
+
"typescript-eslint": "^8.43.0"
|
|
62
83
|
},
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
"bottleneck": "^2.19.5",
|
|
68
|
-
"events": "^3.3.0",
|
|
69
|
-
"fast-levenshtein": "^3.0.0",
|
|
70
|
-
"figlet": "^1.8.1",
|
|
71
|
-
"hono": "^4.7.11",
|
|
72
|
-
"jimp": "^0.16.1",
|
|
73
|
-
"kysely": "^0.28.2",
|
|
74
|
-
"mysql2": "^3.14.1",
|
|
75
|
-
"node-cache": "^5.1.2",
|
|
76
|
-
"ora": "^8.2.0",
|
|
77
|
-
"pg": "^8.16.0",
|
|
78
|
-
"pino": "^9.6.0",
|
|
79
|
-
"qrcode": "^1.5.4"
|
|
80
|
-
}
|
|
84
|
+
"trustedDependencies": [
|
|
85
|
+
"baileys",
|
|
86
|
+
"protobufjs"
|
|
87
|
+
]
|
|
81
88
|
}
|