smartacme/ts/plugins.ts

58 lines
1.4 KiB
TypeScript
Raw Normal View History

// node native
import * as fs from 'fs';
import * as path from 'path';
export { fs, path };
// @apiclient.xyz scope
import * as cloudflare from '@apiclient.xyz/cloudflare';
export { cloudflare };
2023-07-21 18:49:18 +02:00
// @apiglobal scope
2024-01-28 02:50:41 +01:00
import * as typedserver from '@api.global/typedserver';
2023-07-21 18:49:18 +02:00
export { typedserver };
2019-01-06 20:41:21 +01:00
// @pushrocks scope
2023-07-21 18:49:18 +02:00
import * as lik from '@push.rocks/lik';
import * as smartdata from '@push.rocks/smartdata';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartdnsClient from '@push.rocks/smartdns/client';
import * as smartfile from '@push.rocks/smartfile';
2023-07-21 18:49:18 +02:00
import * as smartlog from '@push.rocks/smartlog';
import * as smartnetwork from '@push.rocks/smartnetwork';
2023-07-21 18:49:18 +02:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartunique from '@push.rocks/smartunique';
import * as smartstring from '@push.rocks/smartstring';
import * as smarttime from '@push.rocks/smarttime';
2017-01-14 14:14:50 +01:00
2019-02-06 09:47:33 +01:00
export {
lik,
smartdata,
smartdelay,
smartdnsClient,
smartfile,
2019-02-06 09:47:33 +01:00
smartlog,
smartnetwork,
2019-02-06 09:47:33 +01:00
smartpromise,
smartrequest,
smartunique,
smartstring,
2020-08-12 16:36:06 +00:00
smarttime,
2019-02-06 09:47:33 +01:00
};
2019-01-06 20:41:21 +01:00
// @tsclass scope
import * as tsclass from '@tsclass/tsclass';
2020-02-21 10:48:08 +00:00
export { tsclass };
// third party scope
2019-01-06 20:41:21 +01:00
import * as acme from 'acme-client';
export { acme };
// local handlers for challenge types
import * as handlers from './handlers/index.js';
export { handlers };