-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "mcp-server-prototype",
"version": "0.0.1",
"description": "developer ai mcp server prototype",
"license": "MIT",
"author": "developer-ai",
"type": "module",
"bin": {
"mcp-server-prototype": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx mkdir -p dist/data && shx cp data/spec3.clean.json dist/data/ && shx cp instructions-*.txt dist/ && shx cp -r mock_sandbox/code_tools dist/mock_sandbox && shx chmod +x dist/*.js && shx cp dist/mock_sandbox/code_tools/*.js mock_sandbox/code_tools",
"watch": "tsc --watch",
"start": "node dist/index.js 2> error.log"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.1",
"https-proxy-agent": "^7.0.6",
"jszip": "^3.10.1",
"stripe": "^19.1.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"shx": "^0.3.4",
"typescript": "^5.9.3"
}
}