-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
60
61
62
63
64
65
66
67
68
{
"name": "mcp-terminal",
"version": "0.1.7",
"description": "Terminal-based interactive client for Model Context Protocol (MCP) servers",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-terminal": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npx ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"cli",
"terminal",
"model",
"context",
"protocol",
"anthropic",
"shopify"
],
"author": "MCP CLI Contributors",
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "latest",
"@modelcontextprotocol/sdk": "^1.8.0",
"@types/node": "^20.12.1",
"ai": "^4.3.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^10.2.0",
"dotenv": "^16.4.5",
"inquirer": "^8.2.6",
"open-editor": "^4.1.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/inquirer": "^8.2.6",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=14.0.0"
},
"resolutions": {
"@modelcontextprotocol/sdk/*": "./node_modules/@modelcontextprotocol/sdk/dist/cjs/*"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/GeLi2001/mcp-terminal.git"
},
"bugs": {
"url": "https://github.com/GeLi2001/mcp-terminal/issues"
},
"homepage": "https://github.com/GeLi2001/mcp-terminal#readme",
"files": [
"dist",
"README.md",
"LICENSE"
]
}