-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "whatsapp-bot",
"version": "0.0.1",
"description": "A WhatsApp bot written in TypeScript using Baileys",
"author": "Silva",
"main": "dist/bot.js",
"keywords": [
"bot",
"whatsapp",
"anime"
],
"license": "AGPL-3.0",
"scripts": {
"format": "prettier --write --config .prettierrc.json \"src/**/*.ts\"",
"start": "node --max-old-space-size=4096 dist/bot.js",
"build": "yarn rimraf dist/ && yarn tsc -p .",
"postinstall": "yarn build"
},
"bugs": {
"url": "https://github.com/SilvaTechB/Darkworld-Md/issues"
},
"homepage": "https://github.com/SilvaTechB/Darkworld-Md",
"repository": {
"type": "git",
"url": "https://github.com/SilvaTechB/Darkworld-Md.git"
},
"dependencies": {
"@adiwajshing/baileys": "^4.3.0",
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^10.0.0",
"@shineiichijo/anime-news-network-scraper": "^1.0.1",
"@shineiichijo/canvas-chan": "^1.0.1",
"@shineiichijo/marika": "^2.0.3",
"@shineiichijo/nhentai-ts": "^0.0.2",
"@typegoose/typegoose": "^9.9.0",
"axios": "^0.27.2",
"canvacord": "5.2.3",
"chalk": "4.1.1",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.1",
"emoji-regex": "^10.1.0",
"events": "^3.3.0",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"get-urls": "10.0.0",
"link-preview-js": "^2.1.15",
"moment-timezone": "^0.5.34",
"mongoose": "6.5.0",
"path": "^0.12.7",
"pino": "^8.0.0",
"prettier": "^2.7.1",
"qr-image": "^3.2.0",
"qrcode-terminal": "^0.12.0",
"spotifydl-core": "^0.2.0",
"typed-emitter": "^2.1.0",
"wa-sticker-formatter": "^4.3.2",
"yt-search": "^2.10.3",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/prettier": "^2.6.3",
"@types/qr-image": "^3.2.5",
"@types/yt-search": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"typescript": "^4.7.4"
}
}