Files
smartssh/ts/smartssh.plugins.ts
T

26 lines
559 B
TypeScript
Raw Normal View History

2024-02-09 18:21:33 +01:00
// node native
import * as crypto from 'crypto';
import fs from 'fs-extra';
2018-09-17 22:32:31 +02:00
import * as path from 'path';
2024-02-09 18:21:33 +01:00
export { crypto, fs, path };
2024-02-09 18:21:33 +01:00
// @push.rocks scope
import * as smartjson from '@push.rocks/smartjson';
import * as smartcrypto from '@push.rocks/smartcrypto';
2023-07-27 15:52:01 +02:00
import * as smartpath from '@push.rocks/smartpath';
import * as smartstring from '@push.rocks/smartstring';
2016-11-23 12:38:38 +01:00
2024-02-09 18:21:33 +01:00
export {
smartjson,
smartcrypto,
smartpath,
smartstring,
};
// third party scope
import * as minimatch from 'minimatch';
import ssh2 from 'ssh2';
2024-02-09 18:21:33 +01:00
export { minimatch, ssh2 };