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/std@0.158.0/encoding/yaml.ts";
export * as TOML from "https://deno.land/std@0.158.0/encoding/toml.ts";
export * as path from "https://deno.land/std@0.158.0/path/mod.ts";
export * as fs from "https://deno.land/std@0.158.0/fs/mod.ts";
export * as dotenv from "https://deno.land/std@0.158.0/dotenv/mod.ts";
export * as datetime from "https://deno.land/std@0.158.0/datetime/mod.ts";
export * as async from "https://deno.land/std@0.158.0/async/mod.ts";
export * as flags from "https://deno.land/std@0.158.0/flags/mod.ts";
export * as colors from "https://deno.land/std@0.158.0/fmt/colors.ts";
export { delay } from "https://deno.land/std@0.158.0/async/delay.ts";
export { DateTimeFormatter } from "https://deno.land/std@0.158.0/datetime/formatter.ts";
export { Command } from "https://deno.land/x/cliffy@v0.25.2/command/mod.ts";
export { serve } from "https://deno.land/std@0.158.0/http/server.ts";
export { contentType } from "https://deno.land/std@0.158.0/media_types/mod.ts";
export {
serveDir,
serveFile,
} from "https://deno.land/x/std@0.159.0/http/file_server.ts";
export * as posixPath from "https://deno.land/std@0.158.0/path/posix.ts";
export { config as dotenvConfig } from "https://deno.land/std@0.158.0/dotenv/mod.ts";
export { readLines } from "https://deno.land/std@0.153.0/io/buffer.ts";
export * as base64 from "https://deno.land/std@0.153.0/encoding/base64.ts";
// third party
export { titleCase } from "https://esm.sh/title-case@3.0.3";
export { default as camelCase } from "https://deno.land/x/lodash@4.17.15-es/camelCase.js";
export { default as groupBy } from "https://deno.land/x/lodash@4.17.15-es/groupBy.js";
export { CSS, render } from "https://deno.land/x/gfm@0.1.22/mod.ts";
// npm modules
export { default as mustache } from "https://esm.sh/mustache@4.2.0";
export { default as pLimit } from "https://esm.sh/p-limit@4.0.0";
export { gfm } from "https://esm.sh/micromark-extension-gfm@2.0.1";
export {
gfmFromMarkdown,
gfmToMarkdown,
} from "https://esm.sh/mdast-util-gfm@2.0.1";
// export { default as kebabCase } from "https://jspm.dev/lodash@4.17.21/kebabCase";
export { toMarkdown } from "https://esm.sh/mdast-util-to-markdown@1.3.0";
export { fromMarkdown } from "https://esm.sh/mdast-util-from-markdown@1.2.0";
export { EXIT, visit } from "https://esm.sh/unist-util-visit@4.1.1";
export { selectAll } from "https://esm.sh/unist-util-select@4.0.1";
export { remove } from "https://esm.sh/unist-util-remove@3.1.0";
export { u } from "https://esm.sh/unist-builder@3.0.0";
export { default as remarkInlineLinks } from "https://esm.sh/remark-inline-links@6.0.1";
export { default as remarkEmoji } from "https://esm.sh/remark-emoji@3.0.2";
export { default as remarkGemoji } from "./lib/gemoji.js";
export type {
Content,
Link,
Root,
TableCell,
TableRow,
} from "https://esm.sh/v92/@types/mdast@3.0.10/index.d.ts";
export { default as jsonfeedToAtom } from "https://jspm.dev/jsonfeed-to-atom@1.2.2";
import transliteration from "https://jspm.dev/transliteration@2.3.5";
// @ts-ignore: npm module
const slug = transliteration.slugify;
export { slug };
export { default as kebabCase } from "https://jspm.dev/lodash@4.17.21/kebabCase";