-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "@cybertheory/mcpkit",
"version": "0.3.1",
"description": "Lightweight UI console to detect MCP-capable coding agents and install MCP servers",
"keywords": [
"mcp",
"model-context-protocol",
"cursor",
"windsurf",
"ai",
"development",
"cli"
],
"author": "MCP Kit Team",
"license": "MIT",
"homepage": "https://github.com/cybertheory/mcpkit",
"repository": {
"type": "git",
"url": "https://github.com/cybertheory/mcpkit.git"
},
"bin": {
"mcpkit": "bin/mcp-kit.js",
"@cybertheory/mcpkit": "bin/mcp-kit.js"
},
"type": "commonjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node bin/mcp-kit.js",
"dev": "node bin/mcp-kit.js",
"build": "npm run build:web",
"build:web": "cd web && npm run build",
"prepublishOnly": "npm run build:web"
},
"dependencies": {
"express": "^4.19.2",
"open": "^10.1.0",
"posthog-node": "^4.2.1"
},
"files": [
"bin/mcp-kit.js",
"web/dist/",
"mcp-registry.json",
"README.md"
]
}