-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeps.ts
24 lines (18 loc) · 1.04 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export * as path from "https://deno.land/[email protected]/path/mod.ts";
export * as colors from "https://deno.land/[email protected]/fmt/colors.ts";
export * as fs from "https://deno.land/[email protected]/fs/mod.ts";
export * as flags from "https://deno.land/[email protected]/flags/mod.ts";
export { Sha256 } from "https://deno.land/[email protected]/hash/sha256.ts";
export {
type ImportMap,
resolveImportMap,
resolveModuleSpecifier as resolveImportMapModuleSpecifier,
} from "https://deno.land/x/[email protected]/mod.ts";
export { default as ts } from "https://esm.sh/[email protected]";
export * as terser from "https://esm.sh/terser";
export * as JSONC from "https://deno.land/[email protected]/encoding/jsonc.ts";
export * as postcss from "https://esm.sh/postcss";
export { default as postcssValueParser } from "https://esm.sh/postcss-value-parser";
export { default as postcssPresetEnv } from "https://esm.sh/postcss-preset-env";
export * as html from "https://deno.land/x/deno_dom/deno-dom-wasm.ts";
export * as mediaTypes from "https://deno.land/[email protected]/media_types/mod.ts";