-
Notifications
You must be signed in to change notification settings - Fork 18
/
deps.ts
31 lines (27 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
export { crypto } from "jsr:@std/[email protected]/crypto";
export { parseArgs } from "jsr:@std/[email protected]/parse-args";
export {
basename,
dirname,
fromFileUrl,
join,
relative,
resolve,
toFileUrl,
} from "jsr:@std/[email protected]";
export { join as posixPathJoin } from "jsr:@std/[email protected]/posix";
export { parse as parseJsonC } from "jsr:@std/[email protected]";
export { ensureDir, exists, walk } from "jsr:@std/[email protected]";
export { red } from "jsr:@std/[email protected]/colors";
export { MuxAsyncIterator } from "jsr:@std/[email protected]";
export { denoPlugins } from "jsr:@luca/[email protected]";
export { build, stop } from "https://deno.land/x/[email protected]/mod.js";
export {
Document,
DOMParser,
Element,
} from "https://deno.land/x/[email protected]/deno-dom-wasm.ts";
export { opn } from "https://raw.githubusercontent.com/hashrock/deno-opn/b358e4c7df5d1c6d5e634d2730ca491ba6062782/opn.ts";
export { serve as serveIterable } from "https://deno.land/x/[email protected]/mod.ts";
export const NAME = "packup";
export const VERSION = "v0.2.6";