init server

This commit is contained in:
Ashwin Bhat
2024-10-07 16:27:49 -07:00
parent 1f8d44dafd
commit 70a9f96712
5 changed files with 925 additions and 4 deletions

View File

@@ -6,18 +6,19 @@
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx watch --clear-screen=false src/index.ts",
"update:mcp": "git subtree pull --prefix=packages/mcp-typescript https://github.com/modelcontextprotocol/typescript-sdk.git main --squash"
"dev": "tsx watch --clear-screen=false src/index.ts"
},
"devDependencies": {
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.12",
"eventsource": "^2.0.2",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"dependencies": {
"express": "^4.20.0",
"mcp-typescript": "file:packages/mcp-typescript"
"express": "^4.21.0",
"mcp-typescript": "file:../packages/mcp-typescript",
"ws": "^8.18.0"
}
}