2024-09-17 22:41:14 +00:00
|
|
|
// node native
|
|
|
|
import * as crypto from 'crypto';
|
|
|
|
import * as fs from 'fs';
|
2024-11-06 20:07:05 +00:00
|
|
|
import * as path from 'path';
|
2024-09-17 22:41:14 +00:00
|
|
|
|
2024-11-06 20:07:05 +00:00
|
|
|
export { crypto,fs, path, };
|
2024-09-17 22:41:14 +00:00
|
|
|
|
|
|
|
// @push.rocks scope
|
2024-09-19 06:38:38 +00:00
|
|
|
import * as qenv from '@push.rocks/qenv';
|
2024-09-18 15:56:53 +00:00
|
|
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
2024-11-06 20:07:05 +00: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 17:40:00 +00:00
|
|
|
import * as smartshell from '@push.rocks/smartshell';
|
|
|
|
|
2024-11-06 20:07:05 +00:00
|
|
|
export { qenv, smartcrypto, smartfile, smartpath, smartrequest, smartshell, };
|