-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
{
"name": "@nurutomo/mahbod",
"version": "1.0.0",
"description": "Typescript WhatsApp Bot",
"homepage": "https://github.com/Nurutomo/mahbod",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "tsc",
"prepack": "tsc",
"build:all": "tsc && typedoc",
"build:docs": "typedoc",
"build:tsc": "tsc",
"start": "node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"whatsapp",
"bot"
],
"author": {
"name": "Nurutomo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nurutomo/mahbot.git"
},
"bugs": {
"url": "https://github.com/Nurutomo/mahbot/issues"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@adiwajshing/baileys": "^5.0.0",
"@adiwajshing/keyed-db": "^0.2.4",
"@commonify/lowdb": "^3.0.0",
"awesome-phonenumber": "^5.4.0",
"chalk": "^4.1.2",
"link-preview-js": "^3.0.4",
"mongoose": "^6.3.3",
"node-fetch": "^2.6.7",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"qrcode-terminal": "^0.12.0",
"steno": "^2.1.0",
"url-regex": "^5.0.0"
},
"files": [
"database/*",
"lib/*",
"lang/*",
"sessions/*"
],
"devDependencies": {
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/ws": "^8.5.4",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
}
}