-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.backup2
More file actions
34 lines (33 loc) · 1.02 KB
/
Copy pathpackage.json.backup2
File metadata and controls
34 lines (33 loc) · 1.02 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
{
"name": "claude-cursor-mcp-bridge",
"version": "1.0.0",
"description": "Complete MCP bridge between Claude Desktop and Cursor IDE",
"main": "dist/server.js",
"scripts": {
"install-all": "npm install",
"build": "npm run build-server && npm run build-extension",
"build-server": "tsc",
"build-extension": "tsc -p tsconfig.extension.json",
"dev": "npm run build-server && node dist/server.js",
"start": "node dist/server.js",
"watch": "tsc -watch",
"watch-extension": "tsc -p tsconfig.extension.json -watch",
"test": "node test-integration.js",
"test-server": "npm run build-server && node test-integration.js",
"verify-setup": "node scripts/verify-setup.js",
"test-watch": "npm run test -- --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ws": "^8.14.0"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"typescript": "^5.0.0"
},
"engines": {
"vscode": "^1.74.0"
}
}