-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev_deps.ts
30 lines (28 loc) · 1.26 KB
/
dev_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
import { $ as _$, type $Type } from 'jsr:@david/dax@^0.42.0'
export { parseFromJson } from 'https://deno.land/x/[email protected]/mod.ts'
export {
Confirm,
type ConfirmOptions,
Input,
type InputOptions,
Select,
type SelectOptions,
} from 'jsr:@cliffy/prompt@^1.0.0-rc.7'
export { as, ensure, is } from 'jsr:@core/unknownutil@^4.3.0'
export { createGraph, load as loadGraph } from 'jsr:@deno/graph@^0.84.1'
export type { DependencyJson, ResolvedDependency } from 'jsr:@deno/graph@^0.84.1/types'
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.7'
export { parseArgs } from 'jsr:@std/cli@^1.0.6'
export { Spinner } from 'jsr:@std/cli@^1.0.6/unstable-spinner'
export { filterEntries } from 'jsr:@std/collections@^1.0.9'
export { bold, cyan, dim, green, magenta } from 'jsr:@std/fmt@^1.0.3/colors'
export { expandGlob } from 'jsr:@std/fs@^1.0.5'
export { getAvailablePort } from 'jsr:@std/net@^1.0.4/get-available-port'
export { dirname, fromFileUrl, relative, resolve, toFileUrl } from 'jsr:@std/path@^1.0.8'
export { escape } from 'jsr:@std/regexp@^1.0.0'
export * as SemVer from 'jsr:@std/semver@^1.0.3'
export const $ = new Proxy(_$, {
apply(target, thisArg, args: Parameters<$Type>) {
return Reflect.apply(target.raw, thisArg, args).quiet()
},
})