-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "opentag",
"version": "0.2.0",
"private": true,
"description": "OpenTag — an open-source, self-hosted alternative to Claude in Slack: run your own AI agent on your infrastructure, with your model and your tools. Built on @copilotkit/channels; also runs on Discord, Telegram & WhatsApp.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch app/index.ts",
"start": "tsx app/index.ts",
"channel": "tsx app/managed.ts",
"agent": "cd agent && uv run python main.py",
"runtime": "tsx runtime.ts",
"notion-mcp": "tsx scripts/start-notion-mcp.ts",
"check-types": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"e2e": "tsx e2e/run.ts",
"e2e:restart": "tsx e2e/restart-recovery.ts",
"e2e:telegram": "tsx e2e/telegram-run.ts"
},
"dependencies": {
"@copilotkit/channels": "^0.1.1",
"@copilotkit/channels-discord": "^0.0.3",
"@copilotkit/channels-intelligence": "^0.1.1",
"@copilotkit/channels-slack": "^0.1.2",
"@copilotkit/channels-telegram": "^0.0.4",
"@copilotkit/channels-ui": "^0.1.1",
"@copilotkit/channels-whatsapp": "^0.0.2",
"@copilotkit/runtime": "^1.62.3",
"@tanstack/ai": "^0.32.0",
"@tanstack/ai-mcp": "^0.1.3",
"@tanstack/ai-openai": "^0.15.2",
"@slack/bolt": "^4.2.0",
"@slack/types": "^2.21.1",
"playwright": "^1.49.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@notionhq/notion-mcp-server": "^2.2.1",
"@types/node": "^22.10.0",
"dotenv": "^16.4.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.1.3"
},
"pnpm": {
"overrides": {
"rxjs": "^7.8.2"
}
}
}