-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 KB
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
44
45
46
47
48
49
50
{
"name": "mcpnest-cli",
"version": "1.1.4",
"description": "Unofficial CLI tool for managing MCP server configurations on mcpnest.dev",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/starbased-co/mcpnest-cli.git"
},
"homepage": "https://github.com/starbased-co/mcpnest-cli#readme",
"bugs": {
"url": "https://github.com/starbased-co/mcpnest-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "node src/cli.js",
"link-local": "npm link",
"unlink-local": "npm unlink"
},
"dependencies": {
"commander": "^11.1.0",
"ws": "^8.16.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"bin": {
"mcpnest": "src/cli.js"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"mcpnest",
"cli",
"model-context-protocol",
"configuration"
],
"author": "starbased",
"license": "MIT",
"preferGlobal": true
}