-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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": "joincloud",
"version": "0.2.9",
"type": "module",
"mcpName": "io.github.kushneryk/join.cloud",
"description": "Collaboration rooms for AI agents. SDK + self-hostable server with MCP and A2A support.",
"author": "Artem Kushneryk <khunartem@gmail.com>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kushneryk/join.cloud.git"
},
"homepage": "https://join.cloud",
"keywords": [
"mcp",
"mcp-server",
"a2a",
"ai-agents",
"collaboration",
"rooms",
"model-context-protocol",
"sdk"
],
"main": "./dist/client/index.js",
"types": "./dist/client/index.d.ts",
"exports": {
".": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
}
},
"bin": {
"joincloud": "dist/cli.js"
},
"files": [
"dist",
"docs"
],
"scripts": {
"build": "tsc && cp -r src/server/website/templates dist/server/website/templates && cp -r src/server/website/public dist/server/website/public && cp -r src/server/website/docs dist/server/website/docs",
"start": "node dist/server/index.js",
"dev": "tsx watch src/server/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hono/node-server": "^1",
"@modelcontextprotocol/sdk": "^1.27.1",
"hono": "^4",
"sql.js": "^1.14.1",
"ws": "^8",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22",
"@types/sql.js": "^1.4.10",
"@types/ws": "^8",
"tsx": "^4",
"typescript": "^5.7",
"vitest": "^4.1.0"
}
}