2024-09-18 00:41:14 +02:00
|
|
|
// node native
|
|
|
|
import * as crypto from 'crypto';
|
|
|
|
import * as fs from 'fs';
|
2024-11-06 21:07:05 +01:00
|
|
|
import * as path from 'path';
|
2024-09-18 00:41:14 +02:00
|
|
|
|
2024-11-06 21:07:05 +01:00
|
|
|
export { crypto,fs, path, };
|
2024-09-18 00:41:14 +02:00
|
|
|
|
|
|
|
// @push.rocks scope
|
2024-09-19 08:38:38 +02:00
|
|
|
import * as qenv from '@push.rocks/qenv';
|
2024-09-18 17:56:53 +02:00
|
|
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
2024-11-06 21:07:05 +01:00
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
2024-09-17 19:40:00 +02:00
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
|
2024-11-06 21:07:05 +01:00
|
|
|
export { qenv, smartcrypto, smartfile, smartpath, smartrequest, smartshell, };
|