@cmdop/bot 2026.2.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@cmdop/bot",
3
+ "version": "2026.02.26",
4
+ "description": "CMDOP multi-channel bot integrations — Telegram, Discord, Slack, Teams, and more",
5
+ "author": "CMDOP <dev@cmdop.com>",
6
+ "homepage": "https://cmdop.com/sdk/bot/",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/commandoperator/cmdop-sdk-js.git",
10
+ "directory": "bot"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/commandoperator/cmdop-sdk-js/issues"
14
+ },
15
+ "type": "module",
16
+ "main": "./dist/index.cjs",
17
+ "module": "./dist/index.js",
18
+ "types": "./dist/index.d.ts",
19
+ "exports": {
20
+ ".": {
21
+ "import": {
22
+ "types": "./dist/index.d.ts",
23
+ "default": "./dist/index.js"
24
+ },
25
+ "require": {
26
+ "types": "./dist/index.d.cts",
27
+ "default": "./dist/index.cjs"
28
+ }
29
+ }
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "examples",
34
+ "CHANGELOG.md"
35
+ ],
36
+ "dependencies": {
37
+ "@cmdop/node": "^2026.02.26",
38
+ "zod": "^4"
39
+ },
40
+ "peerDependencies": {
41
+ "@microsoft/teams.ai": ">=2.0",
42
+ "@slack/bolt": ">=4.0",
43
+ "discord.js": ">=14.0",
44
+ "grammy": ">=1.30"
45
+ },
46
+ "peerDependenciesMeta": {
47
+ "grammy": {
48
+ "optional": true
49
+ },
50
+ "discord.js": {
51
+ "optional": true
52
+ },
53
+ "@slack/bolt": {
54
+ "optional": true
55
+ },
56
+ "@microsoft/teams.ai": {
57
+ "optional": true
58
+ }
59
+ },
60
+ "keywords": [
61
+ "cmdop",
62
+ "bot",
63
+ "telegram",
64
+ "discord",
65
+ "slack",
66
+ "teams",
67
+ "agent",
68
+ "terminal"
69
+ ],
70
+ "license": "MIT",
71
+ "engines": {
72
+ "node": ">=20.0.0"
73
+ },
74
+ "publishConfig": {
75
+ "access": "public"
76
+ }
77
+ }