-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.56 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "star-xd",
"version": "3.5.0",
"description": "Ultra performance multi-device WhatsApp bot by Malvin Tech",
"type": "module",
"main": "index.js",
"directories": {
"assets": "assets",
"lib": "lib",
"data": "data",
"plugins": "plugins"
},
"scripts": {
"start": "node index.js",
"start:optimized": "node --max-old-space-size=512 --optimize-for-size --gc-interval=100 index.js",
"start:fresh": "node reset-data.js && node index.js",
"dev": "nodemon --watch . --ext js --ignore node_modules --ignore data --ignore session --ignore temp index.js",
"reset-data": "node reset-data.js",
"reset-session": "node -e \"import('fs').then(f=>f.default.rmSync('./session',{recursive:true,force:true})).then(()=>console.log('Session cleared!'))\"",
"build": "echo 'No build step needed - plain JS'",
"lint": "eslint . --ext .js",
"test": "vitest run",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:watch": "vitest",
"audit": "npm audit --omit=dev"
},
"keywords": [
"whatsapp-bot",
"baileys-bot",
"MALVIN-XD",
"star-xd",
"multi-device",
"nodejs-bot",
"javascript-bot"
],
"homepage": "https://github.com/XdKing2/star-xd",
"repository": {
"type": "git",
"url": "git+https://github.com/XdKing2/star-xd.git"
},
"bugs": {
"url": "https://github.com/XdKing2/star-xd/issues"
},
"license": "MIT",
"author": "Malvin King",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"acrcloud": "^1.4.0",
"adm-zip": "^0.5.16",
"api-qasim": "^3.2.10",
"awesome-phonenumber": "^5.9.0",
"axios": "^1.8.4",
"better-sqlite3": "^12.5.0",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"dotenv": "^16.4.5",
"express": "^4.22.1",
"file-type": "^19.6.0",
"form-data": "^4.0.1",
"gspeak": "^0.0.3",
"human-readable": "^0.2.1",
"libphonenumber-js": "^1.11.18",
"megajs": "^1.3.9",
"moment-timezone": "^0.5.43",
"mongoose": "^9.0.2",
"mumaker": "^2.0.0",
"mysql2": "^3.16.0",
"node-cache": "^5.1.2",
"node-webpmux": "^3.1.0",
"pg": "^8.16.3",
"qrcode": "^1.5.4",
"ruhend-scraper": "^9.0.8",
"sharp": "^0.34.0",
"simple-git": "^3.30.0",
"stickers-formatter": "^0.0.2",
"syntax-error": "^1.4.0",
"yt-search": "^2.12.1"
},
"devDependencies": {
"eslint": "^10.0.2",
"nodemon": "^3.1.14",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": "^10.2.1",
"yargs-parser": "^21.1.1"
}
}