2019-01-06 01:30:07 +01:00
|
|
|
// native
|
2026-05-01 15:54:39 +00:00
|
|
|
import * as fs from 'node:fs';
|
2019-01-06 01:30:07 +01:00
|
|
|
import * as path from 'path';
|
|
|
|
|
|
2026-05-01 15:54:39 +00:00
|
|
|
export { fs, path };
|
2019-01-06 01:30:07 +01:00
|
|
|
|
2023-08-09 17:47:20 +02:00
|
|
|
// @api.global scope
|
|
|
|
|
import * as typedrequest from '@api.global/typedrequest';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
typedrequest,
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-06 01:30:07 +01:00
|
|
|
// @pushrocks scope
|
2023-08-08 19:08:25 +02:00
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
2019-01-06 01:30:07 +01:00
|
|
|
|
2026-05-01 15:54:39 +00:00
|
|
|
export { smartlog };
|
2023-08-09 17:47:20 +02:00
|
|
|
|
|
|
|
|
// @configvault.io scope
|
|
|
|
|
import * as configvaultInterfaces from '@configvault.io/interfaces';
|
|
|
|
|
|
|
|
|
|
export { configvaultInterfaces };
|
2026-05-01 15:54:39 +00:00
|
|
|
|
|
|
|
|
// third party scope
|
|
|
|
|
import * as yaml from 'yaml';
|
|
|
|
|
|
|
|
|
|
export { yaml };
|