37 lines
755 B
TypeScript
37 lines
755 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path,
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as qenv from '@push.rocks/qenv';
|
|
import * as smartarray from '@push.rocks/smartarray';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpdf from '@push.rocks/smartpdf';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
import * as webstream from '@push.rocks/webstream';
|
|
|
|
export {
|
|
smartarray,
|
|
qenv,
|
|
smartfile,
|
|
smartpath,
|
|
smartpdf,
|
|
smartpromise,
|
|
smartrequest,
|
|
webstream,
|
|
}
|
|
|
|
// third party
|
|
import * as anthropic from '@anthropic-ai/sdk';
|
|
import * as openai from 'openai';
|
|
|
|
export {
|
|
anthropic,
|
|
openai,
|
|
}
|