-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.16 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
{
"name": "session-collab-mcp",
"version": "2.5.0",
"description": "Provider-agnostic Model Context Protocol (MCP) collaboration server: claim files, persist working memory, and prevent multi-agent session conflicts",
"license": "MIT",
"author": "leaf76",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"collaboration",
"session",
"conflict-prevention",
"working-memory",
"multi-agent",
"claude-code",
"codex",
"stdio"
],
"type": "module",
"bin": {
"session-collab-mcp": "dist/cli.js",
"session-collab-http": "dist/http/cli.js",
"session-collab": "dist/http/client-cli.js"
},
"files": [
"bin",
"dist",
"migrations",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/leaf76/session-collab-mcp#readme",
"bugs": {
"url": "https://github.com/leaf76/session-collab-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leaf76/session-collab-mcp.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"build:legacy": "SESSION_COLLAB_INCLUDE_LEGACY=true tsup",
"start": "node dist/cli.js",
"start:dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest",
"test:http": "SESSION_COLLAB_HTTP_TESTS=true vitest run src/http/__tests__/server-integration.test.ts",
"test:release": "npm run typecheck && npm run lint && npm test -- --run && npm run test:http && npm run build && npm pack --dry-run",
"install:local": "npm run build && node scripts/install-local.mjs"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^9.17.0",
"fast-check": "^4.7.0",
"tsup": "^8.5.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
},
"overrides": {
"esbuild": ">=0.28.1",
"vite": ">=8.0.16",
"js-yaml": ">=4.2.0",
"brace-expansion": ">=5.0.6"
}
}