-
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.01 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.01 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": "@bugstan/mcpxhub",
"version": "1.2.1",
"publishConfig": {
"access": "public"
},
"description": "The ultimate MCP middleware connecting Claude Desktop to VS Code, Cursor, Antigravity, Windsurf, and JetBrains IDEs. Unlock standard agentic coding capabilities across all your editors.",
"main": "dist/src/index.js",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/n2ns/MCPxHub.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-desktop",
"ai",
"ai-agent",
"coding-assistant",
"ide",
"jetbrains",
"vscode",
"intellij",
"webstorm",
"cursor-alternative",
"middleware",
"bridge",
"developer-tools",
"productivity",
"json-rpc",
"cursor",
"windsurf",
"antigravity",
"cursor-ai",
"codeium",
"ide-bridge"
],
"author": "Bugstan",
"bugs": {
"url": "https://github.com/n2ns/MCPxHub/issues"
},
"homepage": "https://github.com/n2ns/MCPxHub#readme",
"bin": {
"mcpxhub": "dist/src/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc && shx chmod +x dist/src/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"bundle": "pnpm build && esbuild dist/src/index.js --bundle --platform=node --format=esm --outfile=dist/bundle.js && shx chmod +x dist/bundle.js",
"bundle:npm": "npm run build && esbuild dist/src/index.js --bundle --platform=node --format=esm --outfile=dist/bundle.js && shx chmod +x dist/bundle.js",
"prepublishOnly": "npm run bundle:npm",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}