-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.2 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.2 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
51
52
53
54
55
56
57
58
59
{
"name": "mcp-client-cli",
"version": "0.1.0",
"description": "Why can't a human use MCP too? - Command-line interface for any MCP server",
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"client",
"tools",
"ai",
"automation"
],
"author": "Alex Newman",
"license": "MIT",
"type": "module",
"bin": {
"mcp-cli": "./bin/mcp-cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "node --test",
"lint": "eslint src"
},
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/YOUR_USERNAME/mcp-client-cli.git"
},
"bugs": {
"url": "https://github.com/YOUR_USERNAME/mcp-client-cli/issues"
},
"homepage": "https://github.com/YOUR_USERNAME/mcp-client-cli#readme"
}