-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.41 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
{
"name": "whatsbot",
"version": "1.0.0",
"description": "Simple WhatsApp bot built in NodeJS & TypeScript, uses Gemini & ChatGPT APIs for Completion.",
"main": "src/index.ts",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@google/generative-ai": "^0.12.0",
"@iamtraction/google-translate": "^2.0.1",
"assemblyai": "^4.6.1",
"axios": "^1.7.2",
"btch-downloader": "^2.3.2",
"cheerio": "^1.0.0-rc.12",
"dl-mate": "^1.2.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"esbuild": "^0.24.0",
"express": "^4.21.1",
"fluent-ffmpeg": "^2.1.3",
"fs": "^0.0.1-security",
"husky": "^9.1.6",
"langdetect": "^0.2.1",
"node-cron": "^3.0.3",
"nodemon": "^3.1.4",
"openai": "^4.48.2",
"path": "^0.12.7",
"puppeteer": "^22.11.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"whatsapp-web.js": "^1.26.1-alpha.3",
"winston": "^3.13.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"dev:refresh": "npm run clean:all && npm install && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && node esbuild.config.js && npm run copy-files",
"deploy": "node ./index.js",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rimraf build",
"clean:all": "rimraf build && rimraf node_modules",
"prepare": "husky install",
"copy-files": "copyfiles -u 0 ./package.json ./.env ./package-lock.json public/**/* build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaasiin-ayeva/WhatsBot.git"
},
"keywords": [
"Polyglot",
"Whatsapp",
"Google Traduction",
"QrCode",
"Puppeteer",
"NodeJS",
"TypeScript",
"AI",
"Whatsapp Bot",
"Automated",
"Whatsapp",
"Bot",
"Gemini",
"ChatGPT"
],
"author": "Yaasiin AYEVA",
"license": "MIT",
"bugs": {
"url": "https://github.com/yaasiin-ayeva/WhatsBot/issues"
},
"homepage": "https://github.com/yaasiin-ayeva/WhatsBot#readme",
"devDependencies": {
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1"
}
}