forked from umshere/uiflowchartcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 KB
/
package.json
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
{
"name": "uiflowchartcreator",
"version": "1.0.1",
"description": "MCP server for creating UI flowcharts",
"main": "build/index.js",
"type": "module",
"scripts": {
"start": "node build/index.js",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
},
"keywords": [
"mcp",
"ui",
"flowchart",
"generator",
"modelcontextprotocol",
"uiflowchart"
],
"author": "",
"license": "ISC",
"files": [
"build",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/umshere/uiflowchartcreator.git"
},
"homepage": "https://github.com/umshere/uiflowchartcreator#readme",
"bugs": {
"url": "https://github.com/umshere/uiflowchartcreator/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.4.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.4.1",
"typescript": "^5.1.3"
}
}