@dolusoft/claude-collab 1.10.3 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +146 -56
- package/dist/cli.js +313 -477
- package/dist/cli.js.map +1 -1
- package/dist/mcp-main.js +312 -476
- package/dist/mcp-main.js.map +1 -1
- package/package.json +80 -81
package/package.json
CHANGED
|
@@ -1,81 +1,80 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dolusoft/claude-collab",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Real-time team collaboration between Claude Code terminals via MCP",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/mcp-main.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"claude-collab": "./dist/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": "./dist/mcp-main.js",
|
|
13
|
-
"types": "./dist/mcp-main.d.ts"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsup",
|
|
18
|
-
"dev": "tsup --watch",
|
|
19
|
-
"lint": "eslint src --ext .ts",
|
|
20
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
21
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
-
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
23
|
-
"test": "vitest run",
|
|
24
|
-
"test:watch": "vitest",
|
|
25
|
-
"test:coverage": "vitest run --coverage",
|
|
26
|
-
"typecheck": "tsc --noEmit",
|
|
27
|
-
"clean": "rimraf dist",
|
|
28
|
-
"prepublishOnly": "npm run clean && npm run build"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"claude",
|
|
32
|
-
"claude-code",
|
|
33
|
-
"mcp",
|
|
34
|
-
"model-context-protocol",
|
|
35
|
-
"collaboration",
|
|
36
|
-
"team",
|
|
37
|
-
"terminal",
|
|
38
|
-
"communication"
|
|
39
|
-
],
|
|
40
|
-
"author": "Dolusoft",
|
|
41
|
-
"license": "MIT",
|
|
42
|
-
"repository": {
|
|
43
|
-
"type": "git",
|
|
44
|
-
"url": "git+https://github.com/dolusoft/claude-collab.git"
|
|
45
|
-
},
|
|
46
|
-
"bugs": {
|
|
47
|
-
"url": "https://github.com/dolusoft/claude-collab/issues"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://github.com/dolusoft/claude-collab#readme",
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=20.0.0"
|
|
52
|
-
},
|
|
53
|
-
"files": [
|
|
54
|
-
"dist",
|
|
55
|
-
"README.md",
|
|
56
|
-
"LICENSE"
|
|
57
|
-
],
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"@types/
|
|
68
|
-
"@types/
|
|
69
|
-
"@
|
|
70
|
-
"@typescript-eslint/
|
|
71
|
-
"@
|
|
72
|
-
"
|
|
73
|
-
"eslint": "^9.
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dolusoft/claude-collab",
|
|
3
|
+
"version": "1.11.0",
|
|
4
|
+
"description": "Real-time team collaboration between Claude Code terminals via MCP",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/mcp-main.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"claude-collab": "./dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/mcp-main.js",
|
|
13
|
+
"types": "./dist/mcp-main.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "tsup --watch",
|
|
19
|
+
"lint": "eslint src --ext .ts",
|
|
20
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
21
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"clean": "rimraf dist",
|
|
28
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"claude",
|
|
32
|
+
"claude-code",
|
|
33
|
+
"mcp",
|
|
34
|
+
"model-context-protocol",
|
|
35
|
+
"collaboration",
|
|
36
|
+
"team",
|
|
37
|
+
"terminal",
|
|
38
|
+
"communication"
|
|
39
|
+
],
|
|
40
|
+
"author": "Dolusoft",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/dolusoft/claude-collab.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/dolusoft/claude-collab/issues"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/dolusoft/claude-collab#readme",
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=20.0.0"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"dist",
|
|
55
|
+
"README.md",
|
|
56
|
+
"LICENSE"
|
|
57
|
+
],
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
60
|
+
"commander": "^12.1.0",
|
|
61
|
+
"uuid": "^10.0.0",
|
|
62
|
+
"ws": "^8.18.0",
|
|
63
|
+
"zod": "^3.25.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/node": "^22.0.0",
|
|
67
|
+
"@types/uuid": "^10.0.0",
|
|
68
|
+
"@types/ws": "^8.5.12",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
70
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
71
|
+
"@vitest/coverage-v8": "^2.0.0",
|
|
72
|
+
"eslint": "^9.0.0",
|
|
73
|
+
"eslint-config-prettier": "^9.1.0",
|
|
74
|
+
"prettier": "^3.3.0",
|
|
75
|
+
"rimraf": "^6.0.0",
|
|
76
|
+
"tsup": "^8.3.0",
|
|
77
|
+
"typescript": "^5.6.0",
|
|
78
|
+
"vitest": "^2.0.0"
|
|
79
|
+
}
|
|
80
|
+
}
|