-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 746 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 746 Bytes
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
{
"name": "gesture-recognition-mcp-server",
"version": "1.0.0",
"description": "MCP server for gesture recognition system with real-time action execution",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"gesture-recognition",
"computer-vision",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}