-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.91 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "codehive",
"version": "1.0.0",
"description": "Real-time multi-developer collaboration for AI-powered coding via MCP",
"author": "CodeHive Contributors",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"codehive": "./bin/codehive.js",
"codehive-mcp": "./bin/codehive-mcp.js",
"codehive-relay": "./bin/codehive-relay.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./relay": {
"import": "./dist/relay/server.js",
"types": "./dist/relay/server.d.ts"
},
"./mcp": {
"import": "./dist/mcp/index.js",
"types": "./dist/mcp/index.d.ts"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"relay": "node --import tsx src/relay/server.ts",
"mcp": "node --import tsx src/mcp/index.ts",
"test": "node test-runner.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"commander": "^14.0.3",
"nanoid": "^5.1.6",
"ws": "^8.19.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/ws": "^8.18.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"keywords": [
"claude-code",
"cursor",
"windsurf",
"copilot",
"vscode",
"mcp",
"collaboration",
"real-time",
"multi-developer",
"websocket",
"pair-programming",
"model-context-protocol",
"ai-coding"
],
"repository": {
"type": "git",
"url": "https://github.com/CodeHiveAPP/codehive"
},
"homepage": "https://github.com/CodeHiveAPP/codehive#readme",
"bugs": {
"url": "https://github.com/CodeHiveAPP/codehive/issues"
}
}