primer commit

This commit is contained in:
2026-01-17 21:43:47 -06:00
commit c8450ed5a8
40 changed files with 11170 additions and 0 deletions

35
gateway/package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "whatsapp-gateway",
"version": "1.0.0",
"description": "Professional WhatsApp Gateway with Baileys",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"qrcode": "^1.5.3",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"@types/qrcode": "^1.5.5",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"tsx": "^4.1.4",
"typescript": "^5.2.2"
}
}