-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 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
{
"name": "hybrid-mcp-server",
"version": "13.0.0",
"description": "ハイブリッドMCPサーバー(Desktop版Claude stdio + HTTP リモート対応 + Git機能)",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:stdio": "MCP_MODE=stdio node dist/index.js",
"start:http": "MCP_MODE=http node dist/index.js --http",
"dev": "tsx src/index.ts",
"dev:stdio": "MCP_MODE=stdio tsx src/index.ts",
"dev:http": "MCP_MODE=http tsx src/index.ts --http",
"test": "echo \"No tests specified\" && exit 0",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"dotenv": "^16.5.0",
"express": "^4.22.1",
"ws": "^8.18.0",
"zod": "^3.25.56"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.2",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.13",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"bin": {
"hybrid-mcp-server": "./dist/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"desktop-claude",
"stdio",
"http",
"remote",
"file-operations",
"hybrid",
"git",
"laravel",
"ai-commit-messages"
],
"author": "SSL Shop",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}