-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 960 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 960 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "cuemap-mcp",
"version": "0.1.3",
"description": "MCP server for CueMap",
"main": "build/index.js",
"bin": {
"cuemap-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch"
},
"keywords": [
"mcp",
"model-context-protocol",
"cuemap",
"memory",
"rag"
],
"author": "Kaan Demirel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cuemap-dev/cuemap-mcp.git"
},
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"cuemap": "^0.6.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@cuemap-dev/engine-darwin-arm64": "^0.6.4",
"@cuemap-dev/engine-darwin-x64": "^0.6.4",
"@cuemap-dev/engine-linux-x64": "^0.6.4",
"@cuemap-dev/engine-win32-x64": "^0.6.4"
}
}