-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 810 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 810 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
{
"name": "@fangjunjie/ssh-mcp-server",
"version": "1.4.0",
"description": "SSH-based MCP Server (基于 SSH 的 MCP 服务器)",
"main": "build/index.js",
"type": "module",
"bin": {
"ssh-mcp-server": "build/index.js"
},
"scripts": {
"test": "node scripts/run-tests.js",
"test:watch": "node --test --watch test/**/*.test.js",
"build": "node scripts/build.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"ssh",
"mcp",
"server",
"cli"
],
"author": "Junki",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"socks": "^2.8.7",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/ssh2": "^1.15.5",
"typescript": "^5.8.2"
},
"files": [
"build/**/*"
]
}