-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "stickerbot",
"version": "1.0.6",
"description": "A WhatsApp bot for creating stickers and much more.",
"main": "bot.js",
"scripts": {
"start": "node ./dist/bot.js",
"dev": "ts-node ./src/bot.ts --skip-unread --dev",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "npx eslint ./src --ext .ts --fix",
"lint": "npx eslint ./src --ext .ts",
"build": "npm i --force && npm audit fix --force && npx tsc",
"debug": "npx nodemon ./src/bot.ts --dev",
"publish": "release-it",
"update": "npx npm-check-updates -u -x pino,sharp"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/juniorkrz/stickerbot.git"
},
"keywords": [
"WhatsApp",
"Sticker",
"Bot"
],
"author": "juniorkrz",
"license": "MIT",
"bugs": {
"url": "https://github.com/juniorkrz/stickerbot/issues"
},
"homepage": "https://github.com/juniorkrz/stickerbot#readme",
"dependencies": {
"@distube/ytdl-core": "^4.16.4",
"@hapi/boom": "^10.0.1",
"@vitalets/google-translate-api": "^9.2.0",
"@whiskeysockets/baileys": "^6.7.13",
"compare-versions": "^6.1.1",
"dotenv": "^16.4.5",
"emoji-regex": "^10.3.0",
"express": "^4.21.0",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.0",
"jsdom": "^24.1.1",
"moment": "^2.30.1",
"normalize-text": "^2.5.0",
"pino": "^9.3.2",
"qr-image": "^3.2.0",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.33.4",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"user-agents": "^1.1.301",
"wa-sticker-formatter": "github:juniorkrz/wa-sticker-formatter",
"ytsr": "^3.8.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.25",
"@types/jsdom": "^21.1.7",
"@types/node-fetch": "^2.6.12",
"@types/qr-image": "^3.2.9",
"@types/qrcode": "^1.5.5",
"@types/qrcode-terminal": "^0.12.2",
"@types/sharp": "^0.31.1",
"@types/user-agents": "^1.0.4",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint-plugin-autofix": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.4.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"release-it": "^18.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}