loclaude 0.0.1-alpha.3 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -2
- package/README.md +152 -64
- package/package.json +25 -14
- package/libs/cli/CHANGELOG.md +0 -59
- package/libs/cli/LICENSE +0 -31
- package/libs/cli/README.md +0 -5
- package/libs/cli/dist/cac.d.ts +0 -6
- package/libs/cli/dist/cac.d.ts.map +0 -1
- package/libs/cli/dist/commands/config.d.ts +0 -6
- package/libs/cli/dist/commands/config.d.ts.map +0 -1
- package/libs/cli/dist/commands/docker.d.ts +0 -17
- package/libs/cli/dist/commands/docker.d.ts.map +0 -1
- package/libs/cli/dist/commands/doctor.d.ts +0 -9
- package/libs/cli/dist/commands/doctor.d.ts.map +0 -1
- package/libs/cli/dist/commands/index.d.ts +0 -6
- package/libs/cli/dist/commands/index.d.ts.map +0 -1
- package/libs/cli/dist/commands/init.d.ts +0 -11
- package/libs/cli/dist/commands/init.d.ts.map +0 -1
- package/libs/cli/dist/commands/models.d.ts +0 -9
- package/libs/cli/dist/commands/models.d.ts.map +0 -1
- package/libs/cli/dist/config.d.ts +0 -74
- package/libs/cli/dist/config.d.ts.map +0 -1
- package/libs/cli/dist/constants.d.ts +0 -12
- package/libs/cli/dist/constants.d.ts.map +0 -1
- package/libs/cli/dist/index.bun.js +0 -4268
- package/libs/cli/dist/index.bun.js.map +0 -55
- package/libs/cli/dist/index.d.ts +0 -2
- package/libs/cli/dist/index.d.ts.map +0 -1
- package/libs/cli/dist/index.js +0 -4271
- package/libs/cli/dist/index.js.map +0 -55
- package/libs/cli/dist/output.d.ts +0 -107
- package/libs/cli/dist/output.d.ts.map +0 -1
- package/libs/cli/dist/spawn.d.ts +0 -35
- package/libs/cli/dist/spawn.d.ts.map +0 -1
- package/libs/cli/dist/types.d.ts +0 -50
- package/libs/cli/dist/types.d.ts.map +0 -1
- package/libs/cli/dist/utils.d.ts +0 -32
- package/libs/cli/dist/utils.d.ts.map +0 -1
- package/libs/cli/package.json +0 -90
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI Output Utilities
|
|
3
|
-
*
|
|
4
|
-
* Provides colorful, themed output for the loclaude CLI.
|
|
5
|
-
* Uses picocolors for terminal colors.
|
|
6
|
-
*
|
|
7
|
-
* Color Palette:
|
|
8
|
-
* - Brand/Primary: cyan - Headers, branding, info
|
|
9
|
-
* - Accent: magenta - Highlights, interactive elements
|
|
10
|
-
* - Success: green - Confirmations, completed tasks
|
|
11
|
-
* - Warning: yellow - Cautions, non-critical issues
|
|
12
|
-
* - Error: red - Failures, critical issues
|
|
13
|
-
* - Dim: gray - Secondary info, hints
|
|
14
|
-
*/
|
|
15
|
-
/** Brand-colored bold text for headers and branding */
|
|
16
|
-
export declare const brand: (text: string) => string;
|
|
17
|
-
/** Accent color for highlights */
|
|
18
|
-
export declare const accent: (text: string) => string;
|
|
19
|
-
/** Bright cyan for emphasis */
|
|
20
|
-
export declare const highlight: (text: string) => string;
|
|
21
|
-
/** Success message with checkmark */
|
|
22
|
-
export declare const success: (text: string) => string;
|
|
23
|
-
/** Warning message with caution symbol */
|
|
24
|
-
export declare const warn: (text: string) => string;
|
|
25
|
-
/** Error message with X symbol */
|
|
26
|
-
export declare const error: (text: string) => string;
|
|
27
|
-
/** Info message with info symbol */
|
|
28
|
-
export declare const info: (text: string) => string;
|
|
29
|
-
/** Dimmed/muted text for secondary information */
|
|
30
|
-
export declare const dim: (text: string) => string;
|
|
31
|
-
/** Bold text for emphasis */
|
|
32
|
-
export declare const bold: (text: string) => string;
|
|
33
|
-
/** Underlined text */
|
|
34
|
-
export declare const underline: (text: string) => string;
|
|
35
|
-
/** Green colored text */
|
|
36
|
-
export declare const green: (text: string) => string;
|
|
37
|
-
/** Yellow colored text */
|
|
38
|
-
export declare const yellow: (text: string) => string;
|
|
39
|
-
/** Red colored text */
|
|
40
|
-
export declare const red: (text: string) => string;
|
|
41
|
-
/** Cyan colored text */
|
|
42
|
-
export declare const cyan: (text: string) => string;
|
|
43
|
-
/** Magenta colored text */
|
|
44
|
-
export declare const magenta: (text: string) => string;
|
|
45
|
-
/** Print a branded header with underline */
|
|
46
|
-
export declare function header(text: string): void;
|
|
47
|
-
/** Print a section title */
|
|
48
|
-
export declare function section(title: string): void;
|
|
49
|
-
/** Print a labeled value */
|
|
50
|
-
export declare function labelValue(label: string, value: string): void;
|
|
51
|
-
/**
|
|
52
|
-
* Format a status line with icon
|
|
53
|
-
*
|
|
54
|
-
* @example
|
|
55
|
-
* statusLine('ok', 'Docker', 'Installed', 'v24.0.0')
|
|
56
|
-
* // ✓ Docker: Installed (v24.0.0)
|
|
57
|
-
*/
|
|
58
|
-
export declare function statusLine(status: 'ok' | 'warning' | 'error', name: string, message: string, extra?: string): string;
|
|
59
|
-
/**
|
|
60
|
-
* Print a hint/suggestion with arrow
|
|
61
|
-
*/
|
|
62
|
-
export declare function hint(text: string): void;
|
|
63
|
-
/**
|
|
64
|
-
* Print the loclaude banner
|
|
65
|
-
*/
|
|
66
|
-
export declare function banner(): void;
|
|
67
|
-
/**
|
|
68
|
-
* Print a spinner-style loading message
|
|
69
|
-
*/
|
|
70
|
-
export declare function loading(text: string): void;
|
|
71
|
-
/**
|
|
72
|
-
* Print a completion message
|
|
73
|
-
*/
|
|
74
|
-
export declare function done(text: string): void;
|
|
75
|
-
/**
|
|
76
|
-
* Print a table row with consistent formatting
|
|
77
|
-
*/
|
|
78
|
-
export declare function tableRow(columns: string[], widths: number[]): string;
|
|
79
|
-
/**
|
|
80
|
-
* Print a table header with underline
|
|
81
|
-
*/
|
|
82
|
-
export declare function tableHeader(columns: string[], widths: number[]): void;
|
|
83
|
-
/**
|
|
84
|
-
* Format bytes with color based on size
|
|
85
|
-
*/
|
|
86
|
-
export declare function coloredSize(sizeStr: string): string;
|
|
87
|
-
/**
|
|
88
|
-
* Format a URL for display
|
|
89
|
-
*/
|
|
90
|
-
export declare function url(urlStr: string): string;
|
|
91
|
-
/**
|
|
92
|
-
* Format a command for display
|
|
93
|
-
*/
|
|
94
|
-
export declare function cmd(command: string): string;
|
|
95
|
-
/**
|
|
96
|
-
* Format a file path for display
|
|
97
|
-
*/
|
|
98
|
-
export declare function file(filePath: string): string;
|
|
99
|
-
/**
|
|
100
|
-
* Print a success summary box
|
|
101
|
-
*/
|
|
102
|
-
export declare function successBox(title: string, lines: string[]): void;
|
|
103
|
-
/**
|
|
104
|
-
* Print an error summary box
|
|
105
|
-
*/
|
|
106
|
-
export declare function errorBox(title: string, lines: string[]): void;
|
|
107
|
-
//# sourceMappingURL=output.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"output.d.ts","sourceRoot":"","sources":["../lib/output.ts"],"names":[],"mappings":"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"}
|
package/libs/cli/dist/spawn.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Cross-runtime spawn utilities
|
|
3
|
-
* Works with both Bun and Node.js
|
|
4
|
-
*/
|
|
5
|
-
export interface SpawnOptions {
|
|
6
|
-
env?: Record<string, string | undefined>;
|
|
7
|
-
cwd?: string;
|
|
8
|
-
stdin?: 'inherit' | 'pipe' | 'ignore';
|
|
9
|
-
stdout?: 'inherit' | 'pipe' | 'ignore';
|
|
10
|
-
stderr?: 'inherit' | 'pipe' | 'ignore';
|
|
11
|
-
}
|
|
12
|
-
export interface SpawnResult {
|
|
13
|
-
exitCode: number;
|
|
14
|
-
stdout?: string;
|
|
15
|
-
stderr?: string;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* Spawn a process and wait for it to complete
|
|
19
|
-
* Returns exit code (inherits stdio by default)
|
|
20
|
-
*/
|
|
21
|
-
export declare function spawn(cmd: string[], opts?: SpawnOptions): Promise<number>;
|
|
22
|
-
/**
|
|
23
|
-
* Spawn a process and capture its output
|
|
24
|
-
* Returns stdout/stderr as strings
|
|
25
|
-
*/
|
|
26
|
-
export declare function spawnCapture(cmd: string[], opts?: Omit<SpawnOptions, 'stdout' | 'stderr'>): Promise<SpawnResult>;
|
|
27
|
-
/**
|
|
28
|
-
* Check if a command exists in PATH
|
|
29
|
-
*/
|
|
30
|
-
export declare function commandExists(cmd: string): Promise<boolean>;
|
|
31
|
-
/**
|
|
32
|
-
* Get the version of a command (assumes --version flag)
|
|
33
|
-
*/
|
|
34
|
-
export declare function getCommandVersion(cmd: string): Promise<string | null>;
|
|
35
|
-
//# sourceMappingURL=spawn.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"spawn.d.ts","sourceRoot":"","sources":["../lib/spawn.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,YAAY;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC;IACtC,MAAM,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC;IACvC,MAAM,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC;CACxC;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;GAGG;AACH,wBAAsB,KAAK,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE,IAAI,GAAE,YAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,CA4BnF;AAED;;;GAGG;AACH,wBAAsB,YAAY,CAChC,GAAG,EAAE,MAAM,EAAE,EACb,IAAI,GAAE,IAAI,CAAC,YAAY,EAAE,QAAQ,GAAG,QAAQ,CAAM,GACjD,OAAO,CAAC,WAAW,CAAC,CAgDtB;AAED;;GAEG;AACH,wBAAsB,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAOjE;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAU3E"}
|
package/libs/cli/dist/types.d.ts
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Type definitions for Ollama API responses
|
|
3
|
-
*/
|
|
4
|
-
export interface OllamaModel {
|
|
5
|
-
name: string;
|
|
6
|
-
model: string;
|
|
7
|
-
modified_at: string;
|
|
8
|
-
size: number;
|
|
9
|
-
}
|
|
10
|
-
export interface OllamaTagsResponse {
|
|
11
|
-
models: OllamaModel[];
|
|
12
|
-
}
|
|
13
|
-
export interface RunningModel {
|
|
14
|
-
/** Model identifier */
|
|
15
|
-
model: string;
|
|
16
|
-
/** Model name */
|
|
17
|
-
name: string;
|
|
18
|
-
/** Size in VRAM (bytes) */
|
|
19
|
-
size_vram: number;
|
|
20
|
-
/** Digest hash */
|
|
21
|
-
digest: string;
|
|
22
|
-
/** When the model will be unloaded */
|
|
23
|
-
expires_at: string;
|
|
24
|
-
/** Model details */
|
|
25
|
-
details: {
|
|
26
|
-
parent_model: string;
|
|
27
|
-
format: string;
|
|
28
|
-
family: string;
|
|
29
|
-
families: string[];
|
|
30
|
-
parameter_size: string;
|
|
31
|
-
quantization_level: string;
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
export interface OllamaPsResponse {
|
|
35
|
-
models: RunningModel[];
|
|
36
|
-
}
|
|
37
|
-
export interface OllamaGenerateRequest {
|
|
38
|
-
model: string;
|
|
39
|
-
prompt: string;
|
|
40
|
-
stream?: boolean;
|
|
41
|
-
keep_alive?: string;
|
|
42
|
-
}
|
|
43
|
-
export interface OllamaGenerateResponse {
|
|
44
|
-
model: string;
|
|
45
|
-
created_at: string;
|
|
46
|
-
response: string;
|
|
47
|
-
done: boolean;
|
|
48
|
-
done_reason?: string;
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../lib/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAMH,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,WAAW,EAAE,CAAC;CACvB;AAMD,MAAM,WAAW,YAAY;IAC3B,uBAAuB;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,iBAAiB;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,2BAA2B;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,sCAAsC;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,OAAO,EAAE;QACP,YAAY,EAAE,MAAM,CAAC;QACrB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,cAAc,EAAE,MAAM,CAAC;QACvB,kBAAkB,EAAE,MAAM,CAAC;KAC5B,CAAC;CACH;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,YAAY,EAAE,CAAC;CACxB;AAMD,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
package/libs/cli/dist/utils.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { OllamaModel, RunningModel } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* Fetch available models from Ollama API
|
|
4
|
-
*/
|
|
5
|
-
export declare function fetchOllamaModels(): Promise<OllamaModel[]>;
|
|
6
|
-
/**
|
|
7
|
-
* Fetch currently running/loaded models from Ollama API
|
|
8
|
-
*/
|
|
9
|
-
export declare function fetchRunningModels(): Promise<RunningModel[]>;
|
|
10
|
-
/**
|
|
11
|
-
* Check if a specific model is currently loaded in memory
|
|
12
|
-
*/
|
|
13
|
-
export declare function isModelLoaded(modelName: string): Promise<boolean>;
|
|
14
|
-
/**
|
|
15
|
-
* Load a model into memory with specified keep_alive duration
|
|
16
|
-
* Sends an empty prompt to trigger model loading
|
|
17
|
-
*/
|
|
18
|
-
export declare function loadModel(modelName: string, keepAlive?: string): Promise<void>;
|
|
19
|
-
/**
|
|
20
|
-
* Ensure a model is loaded, loading it if necessary
|
|
21
|
-
* Shows progress while loading
|
|
22
|
-
*/
|
|
23
|
-
export declare function ensureModelLoaded(modelName: string): Promise<void>;
|
|
24
|
-
/**
|
|
25
|
-
* Interactive model selection prompt
|
|
26
|
-
*/
|
|
27
|
-
export declare function selectModelInteractively(): Promise<string>;
|
|
28
|
-
/**
|
|
29
|
-
* Launch Claude with Ollama configuration
|
|
30
|
-
*/
|
|
31
|
-
export declare function launchClaude(model: string, passthroughArgs: string[]): Promise<void>;
|
|
32
|
-
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../lib/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAwC,YAAY,EAAE,MAAM,SAAS,CAAC;AAM/F;;GAEG;AACH,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC,CAQhE;AAED;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,YAAY,EAAE,CAAC,CAgBlE;AAED;;GAEG;AACH,wBAAsB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAWvE;AAED;;;GAGG;AACH,wBAAsB,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,GAAE,MAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAsB3F;AAED;;;GAGG;AACH,wBAAsB,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAkBxE;AAMD;;GAEG;AACH,wBAAsB,wBAAwB,IAAI,OAAO,CAAC,MAAM,CAAC,CAmChE;AAMD;;GAEG;AACH,wBAAsB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,iBAuB1E"}
|
package/libs/cli/package.json
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@loclaude-internal/cli",
|
|
3
|
-
"version": "0.0.1-alpha.2",
|
|
4
|
-
"description": "An internal @loclaude-internal package that supplies common CLI utilities.",
|
|
5
|
-
"module": "dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"keywords": [
|
|
9
|
-
"claude",
|
|
10
|
-
"ollama",
|
|
11
|
-
"llm",
|
|
12
|
-
"cli",
|
|
13
|
-
"ai",
|
|
14
|
-
"open-webui",
|
|
15
|
-
"claude-code"
|
|
16
|
-
],
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/nicholasgalante1997/loclaude.git"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://github.com/nicholasgalante1997/loclaude.git#readme",
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://github.com/nicholasgalante1997/loclaude.git/issues"
|
|
24
|
-
},
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
"access": "public",
|
|
27
|
-
"registry": "https://registry.npmjs.org/",
|
|
28
|
-
"tag": "alpha"
|
|
29
|
-
},
|
|
30
|
-
"exports": {
|
|
31
|
-
".": {
|
|
32
|
-
"import": "./dist/index.js",
|
|
33
|
-
"types": "./dist/index.d.ts",
|
|
34
|
-
"default": "./dist/index.js"
|
|
35
|
-
},
|
|
36
|
-
"./bun": {
|
|
37
|
-
"import": "./dist/index.bun.js",
|
|
38
|
-
"types": "./dist/index.d.ts",
|
|
39
|
-
"default": "./dist/index.bun.js"
|
|
40
|
-
},
|
|
41
|
-
"./bun.js": {
|
|
42
|
-
"import": "./dist/index.bun.js",
|
|
43
|
-
"types": "./dist/index.d.ts",
|
|
44
|
-
"default": "./dist/index.bun.js"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"dist",
|
|
49
|
-
"CHANGELOG.md",
|
|
50
|
-
"LICENSE",
|
|
51
|
-
"README.md"
|
|
52
|
-
],
|
|
53
|
-
"engines": {
|
|
54
|
-
"bun": ">=1.3"
|
|
55
|
-
},
|
|
56
|
-
"packageManager": "bun@1.3.6",
|
|
57
|
-
"scripts": {
|
|
58
|
-
"prebuild": "rm -rf dist",
|
|
59
|
-
"build-types": "tsc -p tsconfig.json --emitDeclarationOnly",
|
|
60
|
-
"bundle": "bun build.ts",
|
|
61
|
-
"build": "run-p build-types bundle",
|
|
62
|
-
"postbuild": "npm pack",
|
|
63
|
-
"test": "bun test",
|
|
64
|
-
"test:watch": "bun test --watch",
|
|
65
|
-
"prepublishOnly": "bun run build",
|
|
66
|
-
"release": "bun run build && npm publish --access public",
|
|
67
|
-
"release:rc": "bun run build && npm publish --tag rc --access public",
|
|
68
|
-
"release:alpha": "bun run build && npm publish --tag alpha --access public",
|
|
69
|
-
"release:beta": "bun run build && npm publish --tag beta --access public"
|
|
70
|
-
},
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@types/bun": "latest",
|
|
73
|
-
"@types/bytes": "^3.1.5",
|
|
74
|
-
"npm-run-all": "^4.1.5"
|
|
75
|
-
},
|
|
76
|
-
"peerDependencies": {
|
|
77
|
-
"typescript": "^5"
|
|
78
|
-
},
|
|
79
|
-
"peerDependenciesMeta": {
|
|
80
|
-
"typescript": {
|
|
81
|
-
"optional": true
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"dependencies": {
|
|
85
|
-
"@inquirer/prompts": "^8.2.0",
|
|
86
|
-
"bytes": "^3.1.2",
|
|
87
|
-
"cac": "^6.7.14",
|
|
88
|
-
"picocolors": "^1.1.1"
|
|
89
|
-
}
|
|
90
|
-
}
|