-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
deps.ts
41 lines (37 loc) · 1.09 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
/** Deno Standard Library */
export {
basename,
dirname,
fromFileUrl,
relative,
resolve,
toFileUrl,
} from "https://deno.land/std@0.202.0/path/mod.ts";
export {
assert,
assertEquals,
} from "https://deno.land/std@0.202.0/testing/asserts.ts";
export { exists } from "https://deno.land/std@0.202.0/fs/mod.ts";
export { format } from "https://deno.land/std@0.202.0/datetime/mod.ts";
export {
bold,
green,
yellow,
} from "https://deno.land/std@0.202.0/fmt/colors.ts";
/** Cliffy */
export {
Command as CliffyCommand,
CompletionsCommand as CliffyCompletionsCommand,
HelpCommand as CliffyHelpCommand,
Select as CliffySelect,
Toggle as CliffyToggle,
} from "https://deno.land/x/cliffy@v0.25.7/mod.ts";
export type { IAction as CliffyIAction } from "https://deno.land/x/cliffy@v0.25.7/mod.ts";
/** MySQL */
export { Client as MySQLClient } from "https://deno.land/x/mysql@v2.12.1/mod.ts";
/** PostgreSQL */
export {
Client as PostgreSQLClient,
} from "https://deno.land/x/postgres@v0.17.0/mod.ts";
/** SQLite */
export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v3.8/mod.ts";