forked from alephjs/aleph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
29 lines (28 loc) · 1.67 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
// deno.land/std
export { Untar } from 'https://deno.land/[email protected]/archive/tar.ts'
export * as bytes from 'https://deno.land/[email protected]/bytes/mod.ts'
export * as base64 from 'https://deno.land/[email protected]/encoding/base64.ts'
export * as colors from 'https://deno.land/[email protected]/fmt/colors.ts'
export { ensureDir } from 'https://deno.land/[email protected]/fs/ensure_dir.ts'
export { exists, existsSync } from 'https://deno.land/[email protected]/fs/exists.ts'
export { walk } from 'https://deno.land/[email protected]/fs/walk.ts'
export { Sha1 } from 'https://deno.land/[email protected]/hash/sha1.ts'
export { Sha256 } from 'https://deno.land/[email protected]/hash/sha256.ts'
export { listenAndServe, serve, ServerRequest } from 'https://deno.land/[email protected]/http/server.ts'
export type { Response } from 'https://deno.land/[email protected]/http/server.ts'
export * as bufio from 'https://deno.land/[email protected]/io/bufio.ts'
export * as path from 'https://deno.land/[email protected]/path/mod.ts'
export * as ws from 'https://deno.land/[email protected]/ws/mod.ts'
// deno.land/x
export * as brotli from 'https://deno.land/x/[email protected]/mod.ts'
export { gzipDecode, gzipEncode } from 'https://deno.land/x/[email protected]/mod.ts'
// esm.sh
export { default as CleanCSS } from 'https://esm.sh/[email protected]?no-check'
export { default as marked } from 'https://esm.sh/[email protected]'
export { default as postcss } from 'https://esm.sh/[email protected]'
export type { AcceptedPlugin } from 'https://esm.sh/[email protected]'
export { minify } from 'https://esm.sh/[email protected]'
export type { ECMA } from 'https://esm.sh/[email protected]'
export { safeLoadFront } from 'https://esm.sh/[email protected]'
// verdor/
export { default as less } from './vendor/less/less.js'