-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@light-merlin-dark/vssh",
"version": "1.8.4",
"description": "MCP-native SSH proxy for AI agents. CLI & MCP Server, plugin system, AI safety guards.",
"main": "dist/index.js",
"bin": {
"vssh": "dist/index.js",
"vssh-mcp": "dist/mcp-server.js"
},
"scripts": {
"build": "tsc",
"dev": "bun run src/index.ts",
"test": "bun test tests/unit tests/integration",
"test:silent": "bun test tests/unit tests/integration 2>/dev/null",
"test:coverage": "bun test --coverage",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:plugins": "bun test tests/integration/plugin-test-runner.test.ts",
"test:plugin": "bun run scripts/test-plugin-dynamic.ts",
"test:list-plugins": "bun run scripts/list-plugins.ts",
"test:all": "bun test && bun run test:plugins",
"test:guard": "bun run tests/test-guard.ts",
"test:old-plugins": "bun run tests/test-plugins.ts",
"test:mcp": "bun run build && bun run tests/test-mcp.ts",
"prepublishOnly": "npm run build",
"lint": "tsc --noEmit",
"start:mcp": "bun run dist/src/mcp-server.js",
"call-mcp": "bun run src/utils/call-mcp.ts"
},
"keywords": [
"ssh",
"ai-tools",
"claude-code",
"cli",
"safety",
"proxy",
"remote-execution",
"command-guard",
"mcp",
"model-context-protocol"
],
"author": "Merlin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/light-merlin-dark/vssh.git"
},
"homepage": "https://github.com/light-merlin-dark/vssh#readme",
"bugs": {
"url": "https://github.com/light-merlin-dark/vssh/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"chalk": "^5.3.0",
"ssh2": "^1.15.0",
"yaml": "^2.8.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/ssh2": "^1.11.18",
"dotenv": "^16.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}