-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "mcp-manager",
"version": "0.1.0",
"description": "A macOS Electron app to manage Claude MCP server configurations",
"main": "main/index.js",
"scripts": {
"start": "electron .",
"dev": "pkill -f 'MCP Manager' || true && electron . --dev --inspect",
"build": "electron-builder",
"lint": "eslint .",
"test": "jest",
"test:e2e": "electron-mocha --renderer test/e2e",
"test:unit": "jest test/unit"
},
"keywords": [
"electron",
"claude",
"mcp",
"server",
"manager"
],
"author": "",
"license": "MIT",
"devDependencies": {
"chai": "^5.2.0",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-mocha": "^13.1.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"spectron": "^19.0.0"
},
"dependencies": {
"axios": "^1.6.2",
"electron-store": "^8.1.0",
"uuid": "^9.0.1"
},
"build": {
"appId": "com.electron.mcp-manager",
"productName": "MCP Manager",
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg",
"icon": "resources/mcp-manager-logo.png"
},
"files": [
"main/**/*",
"renderer/**/*",
"resources/**/*",
"tray/**/*",
"package.json"
]
}
}