forked from vercel-labs/mcp-on-vercel
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "meetingbaas-mcp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc --watch",
"start": "echo \"Use 'pnpm local' to run the local server or deploy to Vercel for production\" && exit 1",
"dev": "pnpm local:dev",
"test-client": "tsc && node dist/scripts/test-client.js",
"local": "tsc && node -r dotenv/config dist/server.js",
"local:dev": "tsc --watch & node -r dotenv/config dist/server.js",
"local:build": "tsc",
"local:start": "node -r dotenv/config dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@8.15.7+sha512.c85cd21b6da10332156b1ca2aa79c0a61ee7ad2eb0453b88ab299289e9e8ca93e6091232b25c07cbf61f6df77128d9c849e5c9ac6e44854dbd211c49f3a67adc",
"dependencies": {
"@meeting-baas/sdk": "^5.0.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.8.4",
"content-type": "^1.0.5",
"dotenv": "^16.4.5",
"raw-body": "^3.0.0",
"redis": "^4.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@types/node": "^20.17.30",
"tsup": "^8.4.0",
"typescript": "^5.3.3"
}
}