-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 727 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
{
"name": "createos-skill-mcp-proxy",
"version": "1.0.0",
"description": "Turn any REST API into an MCP server in 30 seconds",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"archiver": "^7.0.1",
"change-case": "^5.4.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}