smartdns/ts_server/plugins.ts

35 lines
524 B
TypeScript
Raw Normal View History

// node native
import crypto from 'crypto';
2025-03-21 18:21:47 +00:00
import dgram from 'dgram';
import fs from 'fs';
import http from 'http';
import https from 'https';
2025-03-21 18:21:47 +00:00
import * as path from 'path';
export {
crypto,
fs,
http,
https,
dgram,
2025-03-21 18:21:47 +00:00
path,
}
// @push.rocks scope
import * as smartpromise from '@push.rocks/smartpromise';
export {
smartpromise,
}
// third party
import elliptic from 'elliptic';
import * as dnsPacket from 'dns-packet';
import * as minimatch from 'minimatch';
export {
dnsPacket,
elliptic,
minimatch,
}