26 lines
559 B
TypeScript
26 lines
559 B
TypeScript
// node native
|
|
import * as crypto from 'crypto';
|
|
import fs from 'fs-extra';
|
|
import * as path from 'path';
|
|
|
|
export { crypto, fs, path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartjson from '@push.rocks/smartjson';
|
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartstring from '@push.rocks/smartstring';
|
|
|
|
export {
|
|
smartjson,
|
|
smartcrypto,
|
|
smartpath,
|
|
smartstring,
|
|
};
|
|
|
|
// third party scope
|
|
import * as minimatch from 'minimatch';
|
|
import ssh2 from 'ssh2';
|
|
|
|
export { minimatch, ssh2 };
|