forked from trackawesomelist/trackawesomelist-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
59 lines (59 loc) · 3.15 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// std
export * as YAML from "https://deno.land/[email protected]/encoding/yaml.ts";
export * as TOML from "https://deno.land/[email protected]/encoding/toml.ts";
export * as path from "https://deno.land/[email protected]/path/mod.ts";
export * as fs from "https://deno.land/[email protected]/fs/mod.ts";
export * as dotenv from "https://deno.land/[email protected]/dotenv/mod.ts";
export * as datetime from "https://deno.land/[email protected]/datetime/mod.ts";
export * as async from "https://deno.land/[email protected]/async/mod.ts";
export * as flags from "https://deno.land/[email protected]/flags/mod.ts";
export * as colors from "https://deno.land/[email protected]/fmt/colors.ts";
export { delay } from "https://deno.land/[email protected]/async/delay.ts";
export { DateTimeFormatter } from "https://deno.land/[email protected]/datetime/formatter.ts";
export { Command } from "https://deno.land/x/[email protected]/command/mod.ts";
export { serve } from "https://deno.land/[email protected]/http/server.ts";
export { contentType } from "https://deno.land/[email protected]/media_types/mod.ts";
export {
serveDir,
serveFile,
} from "https://deno.land/x/[email protected]/http/file_server.ts";
export * as posixPath from "https://deno.land/[email protected]/path/posix.ts";
export { config as dotenvConfig } from "https://deno.land/[email protected]/dotenv/mod.ts";
export { readLines } from "https://deno.land/[email protected]/io/buffer.ts";
export * as base64 from "https://deno.land/[email protected]/encoding/base64.ts";
// third party
export { titleCase } from "https://esm.sh/[email protected]";
export { default as camelCase } from "https://deno.land/x/[email protected]/camelCase.js";
export { default as groupBy } from "https://deno.land/x/[email protected]/groupBy.js";
export { CSS, render } from "https://deno.land/x/[email protected]/mod.ts";
// npm modules
export { default as mustache } from "https://esm.sh/[email protected]";
export { default as pLimit } from "https://esm.sh/[email protected]";
export { gfm } from "https://esm.sh/[email protected]";
export {
gfmFromMarkdown,
gfmToMarkdown,
} from "https://esm.sh/[email protected]";
// export { default as kebabCase } from "https://jspm.dev/[email protected]/kebabCase";
export { toMarkdown } from "https://esm.sh/[email protected]";
export { fromMarkdown } from "https://esm.sh/[email protected]";
export { EXIT, visit } from "https://esm.sh/[email protected]";
export { selectAll } from "https://esm.sh/[email protected]";
export { remove } from "https://esm.sh/[email protected]";
export { u } from "https://esm.sh/[email protected]";
export { default as remarkInlineLinks } from "https://esm.sh/[email protected]";
export { default as remarkEmoji } from "https://esm.sh/[email protected]";
export { default as remarkGemoji } from "./lib/gemoji.js";
export type {
Content,
Link,
Root,
TableCell,
TableRow,
} from "https://esm.sh/v92/@types/[email protected]/index.d.ts";
export { default as jsonfeedToAtom } from "https://jspm.dev/[email protected]";
import transliteration from "https://jspm.dev/[email protected]";
// @ts-ignore: npm module
const slug = transliteration.slugify;
export { slug };
export { default as kebabCase } from "https://jspm.dev/[email protected]/kebabCase";