-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.ts
50 lines (45 loc) · 1.36 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
44
45
46
47
48
49
50
// std/
export {
basename,
dirname,
fromFileUrl,
join,
resolve,
} from "https://deno.land/std@0.151.0/path/mod.ts";
// std/node/
export {
createCipheriv,
createHash,
pbkdf2Sync,
randomBytes,
} from "https://deno.land/std@0.151.0/node/crypto.ts";
export { Buffer } from "https://deno.land/std@0.151.0/node/buffer.ts";
export {
createWriteStream,
existsSync,
WriteStream,
} from "https://deno.land/std@0.151.0/node/fs.ts";
export { Socket } from "https://deno.land/std@0.151.0/node/net.ts";
// x/
export { SocksClient } from "https://deno.land/x/deno_socks@v2.6.1/mod.ts";
export { getWords } from "https://deno.land/x/dryptography@v0.1.4/aes/utils/words.ts";
export * as denodb from "https://deno.land/x/denodb@v1.0.39/mod.ts";
// cdn.skypack.dev/
export {
Mutex,
Semaphore,
} from "https://cdn.skypack.dev/async-mutex@v0.3.2?dts";
export {
default as AES,
IGE,
} from "https://cdn.skypack.dev/@cryptography/aes@0.1.1?dts";
export { inflate } from "https://cdn.skypack.dev/pako@v2.0.4?dts";
export { getExtension, getType } from "https://cdn.skypack.dev/mime?dts";
export { default as bigInt } from "https://cdn.skypack.dev/big-integer?dts";
// esm.sh/
export { w3cwebsocket } from "https://esm.sh/websocket@1.0.34";
// ghc.deno.dev/
export {
type Handler,
Parser,
} from "https://ghc.deno.dev/tbjgolden/deno-htmlparser2@1f76cdf/htmlparser2/Parser.ts";