-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
{
"name": "tcsas-devtools-mcp-server",
"version": "0.1.2",
"description": "An MCP (Model Context Protocol) server to integrate TCSAS-Devtools with AI assistants, enabling natural language control for miniprogram development tasks like launching, previewing, and uploading.",
"main": "index.js",
"scripts": {
"build": "tsc",
"tsc": "tsc",
"devins": "npm run tsc && npx -y @modelcontextprotocol/inspector node ./build/index.js",
"dev": "npm run tsc && node ./build/index.js",
"dev:ts": "ts-node src/index.ts",
"start": "node ./build/index.js",
"debug": "npx -y @modelcontextprotocol/inspector",
"dev:full": "npm run tsc && (npm run start & npm run debug)",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"tcsas-devtools-mcp-server": "build/index.js"
},
"files": [
"build"
],
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TCMPP-Team/tcsas-devtools-mcp-server.git"
},
"bugs": {
"url": "https://github.com/TCMPP-Team/tcsas-devtools-mcp-server/issues"
},
"homepage": "https://github.com/TCMPP-Team/tcsas-devtools-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"express": "^5.1.0",
"tencentcloud-sdk-nodejs-intl-en": "^3.0.1270",
"winreg": "^1.2.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.1",
"@types/node": "^24.8.1",
"@types/winreg": "^1.2.36",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}