-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"name": "@eightshone/sshman",
"version": "0.1.16",
"description": "A simple cli ssh manager",
"main": "src/app.js",
"repository": "git@github.com:eightshone/shhman.git",
"author": "EIGHTSH ONE",
"keywords": [
"cli-ssh-manager",
"ssh-connection-manager",
"server-management",
"ssh-tool",
"ssh-client",
"connection-management",
"ssh-logs",
"ssh-automation",
"server-administration",
"ssh-command-line-tool",
"ssh-configurations",
"server-logs-management",
"ssh-access",
"multi-server-ssh",
"ssh-connection-history",
"ssh-session-management",
"ssh-connection-tool",
"server-log-monitoring",
"cli-server-tool",
"ssh-protocol"
],
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"sshman": "./dist/src/app.js"
},
"scripts": {
"dev": "tsx src/app.ts",
"build": "tsc",
"postbuild": "fix-esm-import-path dist && node scripts/update-utils.js && node scripts/inject-telemetry-endpoint.js && npx javascript-obfuscator ./dist --output ./dist --target node --compact true"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/ssh2": "^1.15.4",
"esbuild": "^0.28.0",
"fix-esm-import-path": "^1.10.1",
"javascript-obfuscator": "^5.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@inquirer/checkbox": "^4.1.9",
"@inquirer/confirm": "^5.1.13",
"@inquirer/input": "^4.1.3",
"@inquirer/number": "^3.0.6",
"@inquirer/password": "^4.0.6",
"@inquirer/search": "^3.0.6",
"@inquirer/select": "^4.0.5",
"clipboardy": "^4.0.0",
"commander": "^13.0.0",
"dayjs": "^1.11.13",
"nanoid": "^5.0.9",
"ssh2": "^1.16.0",
"yocto-spinner": "^0.1.2",
"yoctocolors-cjs": "^2.1.2"
}
}