-
Notifications
You must be signed in to change notification settings - Fork 332
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.06 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.06 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mega-mdx",
"version": "6.0.0",
"description": "High performance multi-device WhatsApp bot",
"type": "module",
"main": "dist/index.js",
"directories": {
"assets": "assets",
"lib": "lib",
"data": "data",
"plugins": "plugins"
},
"scripts": {
"start": "node dist/index.js",
"start:optimized": "node --max-old-space-size=512 --optimize-for-size --gc-interval=100 dist/index.js",
"start:fresh": "node dist/reset-data.js && node dist/index.js",
"build": "tsc && cp -r assets dist/",
"rebuild": "npm run clean && npm run build",
"clean": "node -e \"import('fs').then(f=>f.default.rmSync('dist',{recursive:true,force:true}))\"",
"dev": "tsc --watch & nodemon --watch dist --ext js dist/index.js",
"setup": "npm run build && node dist/reset-data.js",
"reset-data": "node dist/reset-data.js",
"reset-session": "node -e \"import('fs').then(f=>f.default.rmSync('./session',{recursive:true,force:true})).then(()=>console.log('Session cleared!'))\"",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:watch": "vitest",
"audit": "npm audit --omit=dev",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"whatsapp-bot",
"baileys-bot",
"Mega-Md",
"Suhail-Md",
"multi-device",
"nodejs-bot",
"typescript-bot"
],
"homepage": "https://github.com/GlobalTechInfo/MEGA-MDX",
"repository": {
"type": "git",
"url": "git+https://github.com/GlobalTechInfo/MEGA-MDX.git"
},
"bugs": {
"url": "https://github.com/GlobalTechInfo/MEGA-MDX/issues"
},
"license": "MIT",
"author": "Qasim Ali",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"acrcloud": "^1.4.0",
"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": "^21.3.4",
"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": "*",
"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": {
"@types/express": "^5.0.6",
"@types/qrcode": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"madge": "^8.0.0",
"nodemon": "^3.1.14",
"ts-unused-exports": "^11.0.1",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": "^10.2.1",
"yargs-parser": "^21.1.1"
}
}