-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "unitone-mcp-builder",
"version": "0.1.0",
"description": "Build Model Context Protocol (MCP) servers from API specifications with an intuitive admin dashboard",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc -p tsconfig.server.json",
"build:client": "vite build",
"start": "node dist/server/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\"",
"test": "vitest run",
"test:builder": "tsx _test/test-mcp-builder.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"api-generator",
"code-generator",
"openapi",
"swagger",
"ai",
"llm",
"claude",
"stdio",
"postman",
"microsoft-graph"
],
"author": "UnitOne AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UnitOneAI/MCPBuilder.git"
},
"bugs": {
"url": "https://github.com/UnitOneAI/MCPBuilder/issues"
},
"homepage": "https://unitone.ai",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@modelcontextprotocol/sdk": "1.20.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mui/x-data-grid": "^6.18.1",
"@tanstack/react-query": "^5.8.4",
"axios": "^1.6.2",
"better-sqlite3": "^11.0.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"notistack": "^3.0.2",
"openapi-types": "^12.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.65.0",
"react-router-dom": "^6.20.1",
"yaml": "^2.8.1",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "8.46.0",
"@typescript-eslint/parser": "8.46.0",
"@vitejs/plugin-react-swc": "4.1.0",
"concurrently": "^8.2.2",
"eslint": "9.37.0",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "^0.4.4",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vite": "7.1.12",
"vitest": "3.2.4"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=9.0.0"
}
}