-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 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
37
{
"name": "cloudrun-mcp-mini-manus",
"version": "1.0.0",
"description": "云开发 MCP Server 基础模板。",
"main": "dist/index.js",
"type": "module",
"scripts": {
"logout": "tcb logout",
"login": "tcb login",
"build": "tsc",
"build:w": "tsc -w",
"dev:f": "dotenvx run -f .env.development -- tcb cloudrunfunction run --port=3000 --enableCors=true -w",
"dev": "dotenvx run -f .env.development -- concurrently \"tsc -w\" \"nodemon --watch dist --exec \\\"npx tcb cloudrunfunction run --port=3000 --enableCors=true\\\"\"",
"deploy": "tcb cloudrun deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cloudbase/functions-typings": "^1.0.0",
"@cloudbase/manager-node": "^4.2.10",
"@cloudbase/mcp": "^1.0.0-beta.23",
"@cloudbase/node-sdk": "^3.7.0",
"@modelcontextprotocol/sdk": "^1.6.1",
"openai": "^4.96.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@cloudbase/cli": "^2.6.13",
"@dotenvx/dotenvx": "^1.38.5",
"@types/node": "^22.13.11",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}