-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "ai-comms",
"version": "1.2.8",
"description": "AI-to-AI communication network over WhatsApp, Telegram, and Microsoft Teams. 18 providers, encrypted agent protocol, multi-agent groups, jailbreak defense.",
"repository": {
"type": "git",
"url": "https://github.com/Jovancoding/AI-COMMS.git"
},
"homepage": "https://github.com/Jovancoding/AI-COMMS#readme",
"bugs": {
"url": "https://github.com/Jovancoding/AI-COMMS/issues"
},
"main": "src/index.js",
"bin": {
"ai-comms": "src/cli.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"cli": "node src/cli.js",
"test": "node src/test-suite.js",
"check": "node --check src/index.js",
"release": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"test:bridge": "node copilot-bridge/test-bridge.js",
"hub": "node hub/server.js",
"hub:dev": "node --watch hub/server.js",
"connector:openclaw": "node src/openclaw-hub-connector.js"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"ai",
"whatsapp",
"agents",
"multi-agent",
"chatbot",
"ai-agents",
"communication",
"openai",
"anthropic",
"claude",
"gemini",
"groq",
"nvidia",
"teams",
"telegram",
"messaging",
"encryption",
"protocol"
],
"author": "Jovancoding",
"license": "MIT",
"type": "module",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"botbuilder": "^4.23.3",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"node-telegram-bot-api": "^0.67.0",
"qrcode-terminal": "^0.12.0",
"ws": "^8.20.0"
}
}