-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
39 lines (39 loc) · 1.06 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
import * as pkgx from "./src/pkgx.ts";
export { pkgx };
import * as semver from "jsr:@std/semver";
export { semver };
export {
bold,
brightGreen,
brightMagenta,
cyan,
gray,
green,
magenta,
red,
yellow,
} from "jsr:@std/fmt/colors";
export { Command } from "jsr:@cliffy/[email protected]";
export {
Checkbox,
Confirm,
Input,
prompt,
} from "jsr:@cliffy/[email protected]";
export {
SpinnerTypes,
TerminalSpinner,
} from "https://cdn.jsdelivr.net/gh/will-weiss/spinners@master/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 "jsr:@cliffy/[email protected]";
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";