-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeps.ts
56 lines (49 loc) · 1.77 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
/// <reference lib="DOM.Iterable" />
/// <reference lib="DOM.AsyncIterable" />
// Std
export {
Status,
STATUS_TEXT,
} from "https://deno.land/std@0.119.0/http/http_status.ts";
export { decode } from "https://deno.land/std@0.119.0/encoding/base64.ts";
export { serve } from "https://deno.land/std@0.119.0/http/server.ts";
// AWS
export { S3Bucket } from "https://deno.land/x/s3@0.4.1/mod.ts";
export type { GetObjectResponse } from "https://deno.land/x/s3@0.4.1/mod.ts";
export { DynamoDB } from "https://aws-api.deno.dev/v0.2/services/dynamodb.ts?actions=GetItem,PutItem,Scan";
export { ApiFactory } from "https://deno.land/x/aws_api@v0.5.0/client/mod.ts";
export {
marshall,
unmarshall,
} from "https://cdn.skypack.dev/@aws-sdk/util-dynamodb@3.13.0";
// Preact
export { Fragment, h } from "https://x.lcas.dev/preact@10.5.12/mod.js";
export type {
ComponentChildren,
JSX,
VNode,
} from "https://x.lcas.dev/preact@10.5.12/mod.d.ts";
export { renderToString } from "https://x.lcas.dev/preact@10.5.12/ssr.js";
// Twind
export { setup } from "https://esm.sh/twind@0.16.13";
export {
getStyleTag,
shim,
virtualSheet,
} from "https://esm.sh/twind@0.16.13/shim/server";
// Font Awesome
export { FontAwesomeIcon } from "https://esm.sh/@fortawesome/react-fontawesome@0.1.14";
export {
faDiscord,
faGithub,
faTwitter,
} from "https://esm.sh/@fortawesome/free-brands-svg-icons@5.15.3";
// Prism
import PrismExports from "https://jspm.dev/prism-react-renderer@1.2.0";
// @ts-ignore TS2339
export const Highlight = PrismExports.default;
export { Prism } from "https://jspm.dev/prism-react-renderer@1.2.0";
export { default as theme } from "https://jspm.dev/prism-react-renderer@1.2.0/themes/github";
// Router
export { router } from "./router.ts";
export type { Match } from "./router.ts";