-
Notifications
You must be signed in to change notification settings - Fork 100
/
deps.ts
42 lines (37 loc) · 1.46 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
// Copyright 2022 the Deno authors. All rights reserved. MIT license.
export { serveDir } from "https://deno.land/[email protected]/http/file_server.ts";
export { walk } from "https://deno.land/[email protected]/fs/walk.ts";
export {
dirname,
fromFileUrl,
join,
relative,
} from "https://deno.land/[email protected]/path/mod.ts";
export {
type ConnInfo,
serve,
} from "https://deno.land/[email protected]/http/mod.ts";
export { extract as frontMatter } from "https://deno.land/[email protected]/front_matter/any.ts";
export * as gfm from "jsr:@deno/[email protected]";
export { Fragment, h } from "https://deno.land/x/[email protected]/mod.ts";
export {
default as html,
type HtmlOptions,
type VNode,
} from "https://deno.land/x/[email protected]/html.tsx";
import UnoCSS from "https://deno.land/x/[email protected]/plugins/unocss.ts";
import ColorScheme from "https://deno.land/x/[email protected]/plugins/color-scheme.ts";
export {
createReporter,
type Reporter as GaReporter,
} from "https://deno.land/x/[email protected]/mod.ts";
export { default as callsites } from "https://raw.githubusercontent.com/kt3k/callsites/v1.0.0/mod.ts";
export { Feed, type Item as FeedItem } from "https://esm.sh/[email protected]";
export { default as removeMarkdown } from "https://esm.sh/[email protected]";
// Add syntax highlighting support for C by default
import "https://esm.sh/[email protected]/components/prism-c?no-check";
export { ColorScheme, UnoCSS };
export type UnoConfig = typeof UnoCSS extends (
arg: infer P | undefined,
) => unknown ? P
: never;