-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "moon-bot",
"version": "5.0-beta",
"description": "Simple Whatsapp Bot",
"keywords": [
"whatsapp-bot",
"wabot"
],
"homepage": "https://github.com/znanx/moon-bot#readme",
"bugs": {
"url": "https://github.com/znanx/moon-bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/znanx/moon-bot.git"
},
"license": "MIT",
"author": "znanx",
"main": "index.js",
"engines": {
"node": ">= 22.x"
},
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node index.js --max-old-space-size=1024",
"pm2": "pm2 start index.js --name moon-bot --max-memory-restart 1G -- --max-old-space-size=1024",
"test": "node test.js",
"server": "node index.js --server"
},
"dependencies": {
"@whiskeysockets/baileys": "v7.0.0-rc.9",
"@znan/wabot": "^0.0.95",
"archiver": "^7.0.1",
"cfonts": "^3.3.0",
"express": "^4.21.2",
"ignore": "^7.0.0",
"node-cron": "^3.0.0",
"yt-search": "^2.10.4"
},
"overrides": {
"jimp": "0.22.12"
},
"resolutions": {
"jimp": "0.22.12"
}
}