-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 909 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
{
"name": "@rmcp/cli",
"version": "1.0.5",
"description": "Boot MCP servers from folders with predefined tool APIs",
"type": "module",
"main": "src/index.ts",
"bin": {
"cli": "./src/cli.ts"
},
"scripts": {
"dev": "bun --watch run src/cli.ts",
"start": "bun run src/cli.ts",
"lint": "oxlint src",
"format": "prettier --write \"**/*.{ts,js,json,md}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\" --ignore-path .gitignore"
},
"keywords": [
"mcp",
"cli",
"tools",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"bun-types": "^1.2.19",
"oxlint": "^1.7.0",
"prettier": "^3.6.2"
},
"engines": {
"bun": ">=1.0.0"
},
"preferredRuntime": "bun"
}