-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@aliyahzombie/octssh",
"version": "0.1.6",
"description": "OctSSH - Make LLMs safely control your servers for deployment (MCP)",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/aliyahzombie/OctSSH.git"
},
"homepage": "https://github.com/aliyahzombie/OctSSH#readme",
"bugs": {
"url": "https://github.com/aliyahzombie/OctSSH/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"ssh",
"deployment",
"automation",
"agent",
"llm"
],
"engines": {
"node": ">=18"
},
"bin": {
"octssh": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist/**",
"README.md",
"README.zh.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"fast-glob": "^3.3.2",
"ssh2": "^1.16.0",
"zod": "^3.24.1"
},
"scripts": {
"clean": "node scripts/clean-dist.cjs",
"build": "npm run clean --silent && tsup",
"test": "npm run build --silent && node --test test/index.test.js",
"dev": "node dist/index.js",
"prepack": "npm run build --silent",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/ssh2": "^1.11.18",
"tsup": "^8.0.0",
"typescript": "^5.5.0"
}
}