-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.ts
43 lines (43 loc) · 1.23 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
import * as pkgx from "./src/pkgx.ts";
export { pkgx };
import * as semver from "https://deno.land/[email protected]/semver/mod.ts";
export { semver };
export {
bold,
brightGreen,
brightMagenta,
cyan,
gray,
green,
magenta,
red,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
export { Command } from "https://deno.land/x/[email protected]/command/mod.ts";
export {
Confirm,
Input,
prompt,
Checkbox,
} from "https://deno.land/x/[email protected]/prompt/mod.ts";
export {
TerminalSpinner,
SpinnerTypes,
} from "https://deno.land/x/[email protected]/mod.ts";
export { decompress } from "https://deno.land/x/[email protected]/mod.ts";
import dir from "https://deno.land/x/[email protected]/mod.ts";
export { dir };
import Logger from "https://deno.land/x/[email protected]/logger.ts";
export { Logger };
import dayjs from "npm:dayjs";
import relativeTime from "npm:dayjs/plugin/relativeTime.js";
dayjs.extend(relativeTime);
export { dayjs };
export {
Cell,
Table,
} from "https://deno.land/x/[email protected]/table/mod.ts";
export { generateName } from "https://deno.land/x/[email protected]/mod.ts ";
import * as _ from "https://cdn.skypack.dev/lodash";
export { _ };
export { open } from "https://deno.land/x/[email protected]/index.ts";