-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 812 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 812 Bytes
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
{
"name": "open-generative-ui-mcp",
"version": "0.1.0",
"description": "Standalone MCP server for OpenGenerativeUI design system and skills",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:stdio": "tsx src/stdio.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:stdio": "node dist/stdio.js",
"lint": "tsc --noEmit"
},
"keywords": ["mcp", "model-context-protocol", "generative-ui", "design-system"],
"author": "CopilotKit",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1",
"@modelcontextprotocol/sdk": "^1.25.3",
"hono": "^4",
"zod": "^3.23"
},
"devDependencies": {
"@types/node": "^20",
"tsx": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=18"
}
}