-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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": "multiwa",
"version": "1.0.0",
"private": true,
"description": "Open Source WhatsApp Business API Gateway - Multi-engine, Self-hosted, Enterprise-ready",
"keywords": [
"whatsapp",
"api",
"gateway",
"baileys",
"whatsapp-web-js",
"self-hosted",
"open-source",
"multiwa"
],
"homepage": "https://github.com/ribato22/multiwa",
"repository": {
"type": "git",
"url": "git+https://github.com/ribato22/multiwa.git"
},
"license": "MIT",
"author": "MultiWA Team",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/schedule": "^6.1.1",
"@types/qrcode": "^1.5.6",
"otplib": "^13.2.1",
"qrcode": "^1.5.4"
}
}