-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 769 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 769 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
{
"name": "roo-mcp-server",
"version": "0.1.0",
"description": "MCP server for Roo Code Memory Bank functionality",
"type": "module",
"main": "dist/index.js",
"bin": {
"roo-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"memory",
"context"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"chalk": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/yargs": "^17.0.33",
"shx": "^0.3.4",
"typescript": "^5.8.3"
}
}