forked from totallynotdavid/SumiBot
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 KB
/
package.json
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
{
"name": "sumibot",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"start:prod": "pm2 start src/app.js --name bot",
"stop": "pm2 stop bot",
"restart": "pm2 restart bot",
"clean:packages": "shx rm -rf node_modules package-lock.json",
"clean:session": "shx rm -rf auth_info_baileys baileys_store.json",
"lint": "eslint . --ext .js src/",
"lint:fix": "eslint . --ext .js src/ --fix",
"prettier": "prettier --write .",
"test": "npm run -s lint"
},
"repository": "git+https://github.com/totallynotdavid/SumiBot.git",
"keywords": [
"bot",
"whatsapp"
],
"author": "David Duran <contacto@altmails.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/totallynotdavid/SumiBot/issues"
},
"homepage": "https://github.com/totallynotdavid/SumiBot#readme",
"private": false,
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0",
"pnpm": ">=8.10.2"
},
"packageManager": "pnpm@9.1.4",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@supabase/supabase-js": "^2.26.0",
"@vitalets/google-translate-api": "^9.2.0",
"@whiskeysockets/baileys": "^6.7.4",
"async-retry": "^1.3.3",
"axios": "^0.27.2",
"baileys-bottle": "^2.1.2",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"jimp": "^0.16.13",
"link-preview-js": "^3.0.4",
"node-cache": "^5.1.2",
"node-fetch": "^2.7.0",
"pino": "^8.18.0",
"pm2": "^5.3.0",
"qrcode-terminal": "^0.12.0",
"query-string": "^8.1.0",
"sharp": "^0.30.5",
"wa-sticker-formatter": "^4.4.4"
},
"devDependencies": {
"eslint": "^8.57.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.1",
"shx": "^0.3.4"
},
"nodemonConfig": {
"ignore": [
"**/auth_info_baileys/**",
"baileys_store.json",
"**/media_storage/**",
"baileys_store_multi.json"
],
"delay": 2500
}
}