feat(sshclient): add a promise-first SSH client with secure host verification and improve SSH key/config handling

This commit is contained in:
2026-05-02 09:43:21 +00:00
parent 4a97d63c04
commit 3b20db79d0
17 changed files with 1332 additions and 170 deletions
+4 -3
View File
@@ -1,8 +1,9 @@
// node native
import * as crypto from 'crypto';
import fs from 'fs-extra';
import * as path from 'path';
export { fs, path };
export { crypto, fs, path };
// @push.rocks scope
import * as smartjson from '@push.rocks/smartjson';
@@ -19,6 +20,6 @@ export {
// third party scope
import * as minimatch from 'minimatch';
import * as nodeSsh from 'node-ssh';
import ssh2 from 'ssh2';
export { minimatch, nodeSsh };
export { minimatch, ssh2 };