-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 953 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 953 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
{
"name": "@getrover/mcp-cli",
"description": "Connect any MCP client to Curio, Rover's code agent, via the stdio transport.",
"version": "1.0.1",
"type": "module",
"author": {
"name": "getrover"
},
"repository": {
"type": "git",
"url": "https://github.com/rover-app/mcp-cli"
},
"license": "MIT",
"keywords": ["MCP", "Model Context Protocol", "Rover", "stdio"],
"bin": {
"rover-mcp": "bin/rover-mcp"
},
"files": ["bin", "dist", "LICENSE.md", "README.md", "package.json"],
"scripts": {
"dev": "bun --hot src/index.ts",
"build": "bun build.ts",
"build:bin": "bun build.ts compile",
"lint": "bun biome check .",
"format": "bun biome format --write .",
"prepack": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/update-notifier": "^6.0.8",
"@modelcontextprotocol/sdk": "^1.10.2",
"mcp-proxy": "^2.12.2",
"update-notifier": "^7.3.1",
"zod": "^3.24.3"
}
}