forked from tuhinpal/WhatsBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "whatsbot",
"version": "3.0.0",
"description": "Plugable UserBot for WhatsApp",
"main": "main.js",
"type": "module",
"scripts": {
"start": "cd dist && node startProcess.js",
"build": "tsc",
"dev": "nodemon startProcess.ts",
"test": "tsc --noEmit",
"lint": "eslint --fix **/*.ts && prettier --write **/*.ts",
"docker": "docker build . -t registry.gitlab.com/wcyat/whatsbot",
"gentoken": "node dist/session/genToken.js",
"gentokenwithdownload": "node dist/session/genTokenWithDownload.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/wcyat/whatsbot.git"
},
"keywords": [
"whatsapp-bot"
],
"author": "wcyat",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/wcyat/whatsbot/-/issues"
},
"homepage": "https://gitlab.com/wcyat/whatsbot",
"dependencies": {
"@google/generative-ai": "^0.2.1",
"@iamtraction/google-translate": "^2.0.1",
"@newyork.anthonyng/chess-image-generator": "^1.0.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/gifencoder": "^2.0.1",
"@types/humanize-duration": "^3.27.1",
"@types/probe-image-size": "^7.2.0",
"@types/uuid": "^9.0.1",
"@wcyat/pokemon-showdown": "^0.11.9",
"@wolfram-alpha/wolfram-alpha-api": "^23.1004.144821-RELEASE",
"adm-zip": "^0.5.9",
"aes-encrypt-stream": "^0.2.0",
"agenda": "^5.0.0",
"axios": "^0.27.2",
"chatgpt": "^5.0.10",
"chess.js": "^1.0.0-beta.6",
"child_process": "^1.0.2",
"decode-uri-component": "^0.2.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"download": "^8.0.0",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"gifencoder": "^2.0.1",
"gify": "^0.2.0",
"humanize-duration": "^3.27.3",
"metar": "^1.0.0",
"mime-to-extensions": "^1.0.2",
"mongodb": "^4.12.1",
"nato-pad": "^0.0.4",
"node-cron": "^3.0.0",
"node-html-parser": "^6.1.12",
"node-html-to-image": "^4.0.0",
"node-llama-cpp": "^2.5.1",
"ocr-space-api-wrapper": "^2.1.3",
"probe-image-size": "^7.2.3",
"qr-image": "^3.2.0",
"qrcode-svg": "^1.1.0",
"qrcode-terminal": "^0.12.0",
"scalc": "^2.0.1",
"serve-index": "^1.9.1",
"strict-uri-encode": "^2.0.0",
"ud-api": "^3.0.2-2",
"uuid": "^9.0.0",
"weather-js": "^2.0.0",
"whatsapp-web.js": "github:pedroslopez/whatsapp-web.js#webpack-exodus"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/download": "^8.0.1",
"@types/express": "^4.17.14",
"@types/node": "^18.11.10",
"@types/node-fetch": "^2.6.2",
"@types/qr-image": "^3.2.5",
"@types/qrcode-terminal": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.31.0",
"husky": "^8.0.0",
"nodemon": "^2.0.20",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}