-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 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": "claude-code-ssh",
"version": "3.2.2",
"description": "MCP server giving Claude Code 51 typed SSH tools across your server fleet. Pooled connections, per-user gated, context-lean output.",
"main": "src/index.js",
"bin": {
"claude-code-ssh": "src/index.js",
"ssh-manager": "cli/ssh-manager"
},
"type": "module",
"scripts": {
"start": "node src/index.js",
"setup": "npm install && ./scripts/setup-hooks.sh",
"test": "node scripts/run-tests.mjs",
"test:profiles": "node tests/test-profiles.js",
"test:aliases": "node tests/test-command-aliases.js",
"test:hooks": "node tests/test-hooks.js",
"test:tools": "node tests/test-tool-registry.js",
"test:all": "npm test && ./scripts/validate.sh",
"validate": "./scripts/validate.sh",
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js' 'tests/**/*.js'"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"ssh",
"ssh-automation",
"remote-ssh",
"devops"
],
"author": "hunchom",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hunchom/claude-code-ssh.git"
},
"bugs": {
"url": "https://github.com/hunchom/claude-code-ssh/issues"
},
"homepage": "https://github.com/hunchom/claude-code-ssh#readme",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.17.2",
"dotenv": "^17.4.2",
"ssh2": "^1.17.0",
"uuid": "^14.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"eslint": "^10.2.0",
"prettier": "^3.2.4"
},
"engines": {
"node": ">=20.19.0"
}
}