Files
smartagent/ts/plugins.ts
2025-12-15 15:29:56 +00:00

27 lines
575 B
TypeScript

// node native
import * as path from 'path';
export { path };
// third party
import { minimatch } from 'minimatch';
export { minimatch };
// @push.rocks scope
import * as smartai from '@push.rocks/smartai';
import * as smartdeno from '@push.rocks/smartdeno';
import * as smartfs from '@push.rocks/smartfs';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartbrowser from '@push.rocks/smartbrowser';
import * as smartshell from '@push.rocks/smartshell';
export {
smartai,
smartdeno,
smartfs,
smartrequest,
smartbrowser,
smartshell,
};