-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.48 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
{
"name": "opentag",
"version": "0.4.1",
"private": true,
"description": "OpenTag — an open-source, self-hosted knowledge-work agent with connected tools and generative UI for Slack and Microsoft Teams.",
"license": "MIT",
"type": "module",
"scripts": {
"setup:dev": "uv sync --project agent --locked && pnpm exec playwright install chromium",
"predev": "pnpm setup:dev",
"dev": "concurrently --kill-others --names agent,runtime --prefix-colors magenta,cyan \"pnpm dev:agent\" \"pnpm dev:runtime\"",
"dev:agent": "cd agent && AGENT_RELOAD=1 uv run python main.py",
"dev:runtime": "tsx watch server.ts",
"start": "tsx server.ts",
"runtime": "tsx server.ts",
"agent": "cd agent && uv run python main.py",
"check-types": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"e2e": "tsx e2e/run.ts"
},
"dependencies": {
"@ag-ui/client": "0.0.59",
"@copilotkit/channels": "0.9.2",
"@copilotkit/runtime": "1.70.1",
"dotenv": "^16.4.5",
"playwright": "^1.49.0",
"tsx": "^4.19.2",
"undici": "^6.27.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.0",
"concurrently": "^10.0.4",
"railway": "^3.5.7",
"typescript": "^5.6.3",
"vitest": "^4.1.3"
},
"pnpm": {
"overrides": {
"rxjs": "^7.8.2"
}
},
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800"
}