-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.33 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
{
"name": "channelgate",
"version": "0.5.1",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"author": "Tiberiu Socaci (MAKEITFUTURE S.R.L.)",
"type": "module",
"description": "ChannelGate \u2014 a self-hosted daemon that runs coding agents (Claude Code, Codex) inside your team chat (Slack, Microsoft Teams, Google Chat) in per-conversation sandboxed folders, with per-user Composio tokens and an admin UI.",
"keywords": [
"channelgate",
"ai-agent",
"self-hosted",
"slack-bot",
"microsoft-teams",
"google-chat",
"claude-code",
"codex",
"mcp",
"sandbox"
],
"scripts": {
"start": "node src/start.js",
"pretest": "node scripts/test-scratch-sweep.mjs",
"test": "node scripts/run-tests.mjs",
"pretest:coverage": "node scripts/test-scratch-sweep.mjs",
"test:coverage": "node scripts/run-tests.mjs --coverage",
"test:security-coverage": "node scripts/security-coverage.mjs",
"test:live-container": "CG_LIVE_CONTAINER=1 node --test test/container-durability.live.test.js",
"check:static": "node scripts/static-check.mjs",
"check:dco": "node scripts/check-dco.mjs",
"secret-scan": "node scripts/secret-scan.mjs",
"dev": "node --watch src/start.js",
"setup": "bash scripts/install.sh",
"update": "bash scripts/update.sh",
"service:install": "bash scripts/install-systemd.sh",
"service:uninstall": "bash scripts/uninstall-systemd.sh",
"backup": "bash scripts/backup-config.sh",
"restore": "bash scripts/restore-config.sh",
"restore:drill": "bash scripts/restore-drill.sh",
"maintenance": "node scripts/runtime-maintenance.mjs",
"usage:repair": "node scripts/repair-codex-usage-history.mjs",
"release:artifacts": "node scripts/release-artifacts.mjs",
"with-landing-lock": "node scripts/with-landing-lock.mjs --",
"whisper:install": "node scripts/install-whisper.mjs",
"build:image": "node scripts/build-image.mjs",
"vscode": "node scripts/open-vscode.mjs"
},
"engines": {
"node": ">=22.13"
},
"dependencies": {
"@composio/core": "0.14.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@slack/bolt": "^5.1.0",
"express": "^5.1.0",
"mcp-remote": "0.8.3",
"zod": "^4.5.4"
},
"devDependencies": {
"acorn": "8.18.0",
"acorn-globals": "7.0.1"
},
"overrides": {
"qs": "6.16.0"
}
}