Files
npmcdn/ts/plugins.ts
2026-01-04 20:47:43 +00:00

36 lines
941 B
TypeScript

// node native
import * as http from 'http';
import * as url from 'url';
import * as path from 'path';
export { http, url, path };
// @push.rocks scope
import * as projectinfo from '@push.rocks/projectinfo';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartfile from '@push.rocks/smartfile';
import * as smartmime from '@push.rocks/smartmime';
import * as smartmarkdown from '@push.rocks/smartmarkdown';
import * as smartnpm from '@push.rocks/smartnpm';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smarttime from '@push.rocks/smarttime';
export {
projectinfo,
smartdelay,
smartfile,
smartmime,
smartmarkdown,
smartnpm,
smartpromise,
smarttime,
};
// unscoped packages
import compression from 'compression';
import express from 'express';
import * as litNtml from 'lit-ntml';
import * as promClient from 'prom-client';
export { compression, express, litNtml, promClient };