2024-02-09 18:21:33 +01:00
|
|
|
// node native
|
2026-05-02 09:43:21 +00:00
|
|
|
import * as crypto from 'crypto';
|
2026-05-01 18:44:22 +00:00
|
|
|
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
|
|
|
|
2026-05-02 09:43:21 +00: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';
|
2026-05-02 09:43:21 +00:00
|
|
|
import ssh2 from 'ssh2';
|
2024-02-09 18:21:33 +01:00
|
|
|
|
2026-05-02 09:43:21 +00:00
|
|
|
export { minimatch, ssh2 };
|