-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "clawgether",
"version": "0.1.0",
"description": "Group coding rooms where multiple developers collaborate with one Claude agent in real-time",
"author": "Ofer Shapira",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/ofershap/clawgether#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ofershap/clawgether.git"
},
"bugs": {
"url": "https://github.com/ofershap/clawgether/issues"
},
"keywords": [
"claude",
"claude-code",
"group-coding",
"pair-programming",
"mob-programming",
"collaboration",
"ai-agent",
"coding-room",
"real-time",
"anthropic",
"developer-tools",
"websocket"
],
"bin": {
"clawgether": "./bin/clawgether.mjs"
},
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"start": "NODE_ENV=production tsx server.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"nanoid": "^5.1.6",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1",
"simple-git": "^3.32.3",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tsx": "^4.21.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "~9.39.0",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}