-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
34 lines (31 loc) · 991 Bytes
/
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
// cliffy
export { Provider, UpgradeCommand } from "@cliffy/command/upgrade";
export type { GithubProviderOptions } from "@cliffy/command/upgrade/provider/github";
export type { UpgradeCommandOptions } from "@cliffy/command/upgrade";
export { colors } from "@cliffy/ansi/colors";
export interface ProviderUpgradeOptions {
name: string;
to: string;
main?: string;
args?: Array<string>;
from?: string;
force?: boolean;
verbose?: boolean;
}
// node builtins
export { homedir } from "node:os";
// std
export { Spinner } from "@std/cli/spinner";
export { type SpinnerOptions } from "@std/cli/spinner";
import { tryParse } from "@std/semver";
import { compare } from "@std/semver/compare";
export const semver = {
compare,
tryParse,
};
export { ensureDirSync, walkSync } from "@std/fs";
// github
export { Octokit } from "octokit";
export type { Endpoints as OctokitEndpoints } from "@octokit/types";
// homegrown
export { inflateResponse } from "@polyseam/inflate-response";