smartssh/ts/smartssh.plugins.ts

31 lines
744 B
TypeScript
Raw Normal View History

2024-02-09 17:21:33 +00:00
// node native
2018-09-17 20:32:31 +00:00
import * as fs from 'fs-extra';
import * as path from 'path';
2024-02-09 17:21:33 +00:00
export { fs, path };
// @push.rocks scope
import * as smartjson from '@push.rocks/smartjson';
2023-07-27 13:52:01 +00:00
import * as smartfile from '@push.rocks/smartfile';
2024-02-09 17:21:33 +00:00
import * as smartcrypto from '@push.rocks/smartcrypto';
2023-07-27 13:52:01 +00:00
import * as smartpath from '@push.rocks/smartpath';
2024-02-09 17:21:33 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartshell from '@push.rocks/smartshell';
2023-07-27 13:52:01 +00:00
import * as smartstring from '@push.rocks/smartstring';
2016-11-23 11:38:38 +00:00
2024-02-09 17:21:33 +00:00
export {
smartjson,
smartfile,
smartcrypto,
smartpath,
smartpromise,
smartshell,
smartstring,
};
// third party scope
import * as minimatch from 'minimatch';
import * as nodeSsh from 'node-ssh';
export { minimatch, nodeSsh };