-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.98 KB
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
{
"name": "ns-agent",
"version": "1.0.0",
"description": "WhatsApp Baileys bot with AI agent, Telegram bridge, and plugin system",
"main": "index.ts",
"type": "module",
"author": {
"name": "nansoffc"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/nansboost/ns-agent.git"
},
"bugs": {
"url": "https://github.com/nansboost/ns-agent/issues"
},
"directories": {
"lib": "lib",
"src": "src",
"plugins": "plugins"
},
"scripts": {
"start": "tsx index.ts",
"dev": "tsx watch main.ts",
"check": "tsc --noEmit",
"start:wrapper": "tsx index.ts",
"start:wa": "tsx main.ts",
"start:telegram": "tsx telegram.ts",
"agent:index": "tsx scripts/build-agent-index.ts",
"agent:check": "npm run agent:index && npm run check"
},
"keywords": [
"baileys-md",
"js-whatsapp",
"multi-device",
"nero",
"nero-bot",
"termux-whatsapp-bot",
"whatsapp-bot"
],
"dependencies": {
"@whiskeysockets/baileys": "^7.0.0-rc11",
"archiver": "^7.0.1",
"awesome-phonenumber": "^3.4.0",
"axios": "^1.1.2",
"cdxdl": "*",
"cfonts": "^3.1.1",
"chalk": "^5.6.2",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^5.0.0",
"express": "^4.18.1",
"file-type": "^18.0.0",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"formdata-node": "^5.0.0",
"jsdom": "^20.0.1",
"lodash": "^4.17.21",
"lowdb": "^3.0.0",
"megajs": "^1.1.3",
"mime-types": "^2.1.35",
"moment-timezone": "^0.5.45",
"mongoose": "^6.6.5",
"node-cache": "^5.1.2",
"node-fetch": "^2.7.0",
"node-gtts": "^2.0.2",
"node-webpmux": "^3.2.1",
"openai": "*",
"pino": "^8.6.1",
"sharp": "^0.33.5",
"syntax-error": "^1.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"url-regex-safe": "^3.0.0",
"yargs": "^17.6.0",
"yt-search": "^2.13.1"
},
"optionalDependencies": {
"wa-sticker-formatter": "^4.3.2"
}
}