-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "mc-pea-ecosystem",
"version": "1.0.0",
"description": "MC-PEA: MCP Backend Generator and Ecosystem Orchestrator",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:core": "npm run build -w packages/core",
"dev": "npm run dev --workspaces --if-present",
"dev:orchestrator": "node tools/dev-server/start.js",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"publish:servers": "npm run publish --workspaces --if-present",
"import-server": "node tools/scripts/import-server.js",
"generate-server": "node tools/scripts/generate-server.js",
"start:ecosystem": "npm run dev:orchestrator"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@types/node": "^20.0.0",
"concurrently": "^8.0.0",
"nodemon": "^3.0.0",
"rimraf": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.0",
"helmet": "^7.0.0",
"winston": "^3.10.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-org/mc-pea.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"backend-generator",
"orchestration",
"microservices"
],
"author": "MC-PEA Development Team",
"license": "MIT"
}