@gunshi/plugin 0.27.0-beta.3 → 0.27.0-beta.4
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/lib/index.d.ts +32 -32
- package/lib/index.js +15 -0
- package/package.json +5 -5
package/lib/index.d.ts
CHANGED
|
@@ -473,10 +473,10 @@ interface Args {
|
|
|
473
473
|
*
|
|
474
474
|
* @typeParam T - {@link Args | Arguments} which is an object that defines the command line arguments.
|
|
475
475
|
*/
|
|
476
|
-
type ArgValues<T> = T extends Args ? ResolveArgValues<T, { [Arg in keyof T]: ExtractOptionValue<T[Arg]> }> : {
|
|
476
|
+
type ArgValues<T$1> = T$1 extends Args ? ResolveArgValues<T$1, { [Arg in keyof T$1]: ExtractOptionValue<T$1[Arg]> }> : {
|
|
477
477
|
[option: string]: string | boolean | number | (string | boolean | number)[] | undefined;
|
|
478
478
|
};
|
|
479
|
-
type IsFunction<T> = T extends ((...args: any[]) => any) ? true : false;
|
|
479
|
+
type IsFunction<T$1> = T$1 extends ((...args: any[]) => any) ? true : false;
|
|
480
480
|
/**
|
|
481
481
|
* Extracts the value type from the argument schema.
|
|
482
482
|
*
|
|
@@ -484,8 +484,8 @@ type IsFunction<T> = T extends ((...args: any[]) => any) ? true : false;
|
|
|
484
484
|
*
|
|
485
485
|
* @internal
|
|
486
486
|
*/
|
|
487
|
-
type ExtractOptionValue<A extends ArgSchema> = A['type'] extends 'string' ? ResolveOptionValue<A, string> : A['type'] extends 'boolean' ? ResolveOptionValue<A, boolean> : A['type'] extends 'number' ? ResolveOptionValue<A, number> : A['type'] extends 'positional' ? ResolveOptionValue<A, string> : A['type'] extends 'enum' ? A['choices'] extends string[] | readonly string[] ? ResolveOptionValue<A, A['choices'][number]> : never : A['type'] extends 'custom' ? IsFunction<A['parse']> extends true ? ResolveOptionValue<A, ReturnType<NonNullable<A['parse']>>> : never : ResolveOptionValue<A, string | boolean | number>;
|
|
488
|
-
type ResolveOptionValue<A extends ArgSchema, T> = A['multiple'] extends true ? T[] : T;
|
|
487
|
+
type ExtractOptionValue<A$1 extends ArgSchema> = A$1['type'] extends 'string' ? ResolveOptionValue<A$1, string> : A$1['type'] extends 'boolean' ? ResolveOptionValue<A$1, boolean> : A$1['type'] extends 'number' ? ResolveOptionValue<A$1, number> : A$1['type'] extends 'positional' ? ResolveOptionValue<A$1, string> : A$1['type'] extends 'enum' ? A$1['choices'] extends string[] | readonly string[] ? ResolveOptionValue<A$1, A$1['choices'][number]> : never : A$1['type'] extends 'custom' ? IsFunction<A$1['parse']> extends true ? ResolveOptionValue<A$1, ReturnType<NonNullable<A$1['parse']>>> : never : ResolveOptionValue<A$1, string | boolean | number>;
|
|
488
|
+
type ResolveOptionValue<A$1 extends ArgSchema, T$1> = A$1['multiple'] extends true ? T$1[] : T$1;
|
|
489
489
|
/**
|
|
490
490
|
* Resolved argument values.
|
|
491
491
|
*
|
|
@@ -494,7 +494,7 @@ type ResolveOptionValue<A extends ArgSchema, T> = A['multiple'] extends true ? T
|
|
|
494
494
|
*
|
|
495
495
|
* @internal
|
|
496
496
|
*/
|
|
497
|
-
type ResolveArgValues<A extends Args, V extends Record<keyof A, unknown>> = { -readonly [Arg in keyof A]?: V[Arg] } & FilterArgs<A, V, 'default'> & FilterArgs<A, V, 'required'> & FilterPositionalArgs<A, V> extends infer P ? { [K in keyof P]: P[K] } : never;
|
|
497
|
+
type ResolveArgValues<A$1 extends Args, V extends Record<keyof A$1, unknown>> = { -readonly [Arg in keyof A$1]?: V[Arg] } & FilterArgs<A$1, V, 'default'> & FilterArgs<A$1, V, 'required'> & FilterPositionalArgs<A$1, V> extends infer P ? { [K in keyof P]: P[K] } : never;
|
|
498
498
|
/**
|
|
499
499
|
* Filters the arguments based on their default values.
|
|
500
500
|
*
|
|
@@ -504,7 +504,7 @@ type ResolveArgValues<A extends Args, V extends Record<keyof A, unknown>> = { -r
|
|
|
504
504
|
*
|
|
505
505
|
* @internal
|
|
506
506
|
*/
|
|
507
|
-
type FilterArgs<A extends Args, V extends Record<keyof A, unknown>, K extends keyof ArgSchema> = { [Arg in keyof A as A[Arg][K] extends {} ? Arg : never]: V[Arg] };
|
|
507
|
+
type FilterArgs<A$1 extends Args, V extends Record<keyof A$1, unknown>, K$1 extends keyof ArgSchema> = { [Arg in keyof A$1 as A$1[Arg][K$1] extends {} ? Arg : never]: V[Arg] };
|
|
508
508
|
/**
|
|
509
509
|
* Filters positional arguments from the argument schema.
|
|
510
510
|
*
|
|
@@ -513,7 +513,7 @@ type FilterArgs<A extends Args, V extends Record<keyof A, unknown>, K extends ke
|
|
|
513
513
|
*
|
|
514
514
|
* @internal
|
|
515
515
|
*/
|
|
516
|
-
type FilterPositionalArgs<A extends Args, V extends Record<keyof A, unknown>> = { [Arg in keyof A as A[Arg]['type'] extends 'positional' ? Arg : never]: V[Arg] };
|
|
516
|
+
type FilterPositionalArgs<A$1 extends Args, V extends Record<keyof A$1, unknown>> = { [Arg in keyof A$1 as A$1[Arg]['type'] extends 'positional' ? Arg : never]: V[Arg] };
|
|
517
517
|
/**
|
|
518
518
|
* An arguments for {@link resolveArgs | resolve arguments}.
|
|
519
519
|
*/
|
|
@@ -526,7 +526,7 @@ type FilterPositionalArgs<A extends Args, V extends Record<keyof A, unknown>> =
|
|
|
526
526
|
*
|
|
527
527
|
* @typeParam A - {@link Args | Arguments}, which is an object that defines the command line arguments.
|
|
528
528
|
*/
|
|
529
|
-
type ArgExplicitlyProvided<A extends Args> = { [K in keyof A]: boolean };
|
|
529
|
+
type ArgExplicitlyProvided<A$1 extends Args> = { [K in keyof A$1]: boolean };
|
|
530
530
|
/**
|
|
531
531
|
* Resolve command line arguments.
|
|
532
532
|
*
|
|
@@ -648,18 +648,18 @@ interface PluginContext<G extends GunshiParamsConstraint = DefaultGunshiParams>
|
|
|
648
648
|
}
|
|
649
649
|
//#endregion
|
|
650
650
|
//#region ../gunshi/src/plugin/core.d.ts
|
|
651
|
-
type ProcessDependency<D, A extends ExtendContext> = D extends string ? D extends keyof A ? { [K in D]: A[K] } : {} : D extends {
|
|
651
|
+
type ProcessDependency<D, A$1 extends ExtendContext> = D extends string ? D extends keyof A$1 ? { [K in D]: A$1[K] } : {} : D extends {
|
|
652
652
|
id: infer ID;
|
|
653
653
|
optional?: any;
|
|
654
|
-
} ? ID extends string ? ID extends keyof A ? D extends {
|
|
654
|
+
} ? ID extends string ? ID extends keyof A$1 ? D extends {
|
|
655
655
|
optional: true;
|
|
656
|
-
} ? { [K in ID]: A[K] | undefined } : { [K in ID]: A[K] } : {} : never : never;
|
|
656
|
+
} ? { [K in ID]: A$1[K] | undefined } : { [K in ID]: A$1[K] } : {} : never : never;
|
|
657
657
|
/**
|
|
658
658
|
* Helper type to infer dependency extensions with optional support
|
|
659
659
|
*
|
|
660
660
|
* @internal
|
|
661
661
|
*/
|
|
662
|
-
type InferDependencyExtensions<D extends ReadonlyArray<PluginDependency | string>, A extends ExtendContext> = D extends readonly [] ? {} : D extends readonly [infer First, ...infer Rest] ? ProcessDependency<First, A> & (Rest extends ReadonlyArray<PluginDependency | string> ? InferDependencyExtensions<Rest, A> : {}) : {};
|
|
662
|
+
type InferDependencyExtensions<D extends ReadonlyArray<PluginDependency | string>, A$1 extends ExtendContext> = D extends readonly [] ? {} : D extends readonly [infer First, ...infer Rest] ? ProcessDependency<First, A$1> & (Rest extends ReadonlyArray<PluginDependency | string> ? InferDependencyExtensions<Rest, A$1> : {}) : {};
|
|
663
663
|
/**
|
|
664
664
|
* Plugin dependency definition
|
|
665
665
|
*
|
|
@@ -696,7 +696,7 @@ type PluginFunction<G extends GunshiParams = DefaultGunshiParams> = (ctx: Readon
|
|
|
696
696
|
*
|
|
697
697
|
* @since v0.27.0
|
|
698
698
|
*/
|
|
699
|
-
type PluginExtension<T = Record<string, unknown>, G extends GunshiParams = DefaultGunshiParams> = (ctx: CommandContextCore<G>, cmd: Command<G>) => Awaitable<T>;
|
|
699
|
+
type PluginExtension<T$1 = Record<string, unknown>, G extends GunshiParams = DefaultGunshiParams> = (ctx: CommandContextCore<G>, cmd: Command<G>) => Awaitable<T$1>;
|
|
700
700
|
/**
|
|
701
701
|
* Plugin extension callback, which is called when the plugin is extended with `extension` option.
|
|
702
702
|
*
|
|
@@ -765,11 +765,11 @@ ResolvedDepExt extends GunshiParams = GunshiParams<{
|
|
|
765
765
|
*
|
|
766
766
|
* @since v0.27.0
|
|
767
767
|
*/
|
|
768
|
-
type Plugin<E extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> = PluginFunction & {
|
|
768
|
+
type Plugin<E$1 extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> = PluginFunction & {
|
|
769
769
|
id: string;
|
|
770
770
|
name?: string;
|
|
771
771
|
dependencies?: (PluginDependency | string)[];
|
|
772
|
-
extension?: CommandContextExtension<E>;
|
|
772
|
+
extension?: CommandContextExtension<E$1>;
|
|
773
773
|
};
|
|
774
774
|
/**
|
|
775
775
|
* Plugin return type with extension, which includes the plugin ID, name, dependencies, and extension.
|
|
@@ -778,7 +778,7 @@ type Plugin<E extends GunshiParams['extensions'] = DefaultGunshiParams['extensio
|
|
|
778
778
|
*
|
|
779
779
|
* @typeParam E - A type extending {@link GunshiParams} to specify the shape of {@linkcode CommandContext}'s extensions.
|
|
780
780
|
*/
|
|
781
|
-
interface PluginWithExtension<E extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> extends Plugin<E> {
|
|
781
|
+
interface PluginWithExtension<E$1 extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> extends Plugin<E$1> {
|
|
782
782
|
/**
|
|
783
783
|
* Plugin identifier
|
|
784
784
|
*/
|
|
@@ -794,7 +794,7 @@ interface PluginWithExtension<E extends GunshiParams['extensions'] = DefaultGuns
|
|
|
794
794
|
/**
|
|
795
795
|
* Plugin extension
|
|
796
796
|
*/
|
|
797
|
-
extension: CommandContextExtension<E>;
|
|
797
|
+
extension: CommandContextExtension<E$1>;
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* Plugin return type without extension, which includes the plugin ID, name, and dependencies, but no extension.
|
|
@@ -803,7 +803,7 @@ interface PluginWithExtension<E extends GunshiParams['extensions'] = DefaultGuns
|
|
|
803
803
|
*
|
|
804
804
|
* @typeParam E - A type extending {@link GunshiParams} to specify the shape of {@linkcode CommandContext}'s extensions.
|
|
805
805
|
*/
|
|
806
|
-
interface PluginWithoutExtension<E extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> extends Plugin<E> {
|
|
806
|
+
interface PluginWithoutExtension<E$1 extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> extends Plugin<E$1> {
|
|
807
807
|
/**
|
|
808
808
|
* Plugin identifier
|
|
809
809
|
*/
|
|
@@ -899,13 +899,13 @@ ResolvedDepExtensions extends GunshiParams = GunshiParams<{
|
|
|
899
899
|
*
|
|
900
900
|
* @typeParam T - The type of the value that can be awaited.
|
|
901
901
|
*/
|
|
902
|
-
type Awaitable<T> = T | Promise<T>;
|
|
902
|
+
type Awaitable<T$1> = T$1 | Promise<T$1>;
|
|
903
903
|
/**
|
|
904
904
|
* Prettify a type by flattening its structure.
|
|
905
905
|
*
|
|
906
906
|
* @typeParam T - The type to be prettified.
|
|
907
907
|
*/
|
|
908
|
-
type Prettify<T> = { [K in keyof T]: T[K] } & {};
|
|
908
|
+
type Prettify<T$1> = { [K in keyof T$1]: T$1[K] } & {};
|
|
909
909
|
/**
|
|
910
910
|
* Extend command context type. This type is used to extend the command context with additional properties at {@linkcode CommandContext.extensions}.
|
|
911
911
|
*
|
|
@@ -921,7 +921,7 @@ type ExtendContext = Record<string, unknown>;
|
|
|
921
921
|
*
|
|
922
922
|
* @since v0.27.0
|
|
923
923
|
*/
|
|
924
|
-
interface GunshiParams<P extends {
|
|
924
|
+
interface GunshiParams<P$1 extends {
|
|
925
925
|
args?: Args;
|
|
926
926
|
extensions?: ExtendContext;
|
|
927
927
|
} = {
|
|
@@ -931,13 +931,13 @@ interface GunshiParams<P extends {
|
|
|
931
931
|
/**
|
|
932
932
|
* Command argument definitions.
|
|
933
933
|
*/
|
|
934
|
-
args: P extends {
|
|
934
|
+
args: P$1 extends {
|
|
935
935
|
args: infer A extends Args;
|
|
936
936
|
} ? A : Args;
|
|
937
937
|
/**
|
|
938
938
|
* Command context extensions.
|
|
939
939
|
*/
|
|
940
|
-
extensions: P extends {
|
|
940
|
+
extensions: P$1 extends {
|
|
941
941
|
extensions: infer E extends ExtendContext;
|
|
942
942
|
} ? E : {};
|
|
943
943
|
}
|
|
@@ -1314,7 +1314,7 @@ type CommandContextCore<G extends GunshiParamsConstraint = DefaultGunshiParams>
|
|
|
1314
1314
|
*
|
|
1315
1315
|
* @since v0.27.0
|
|
1316
1316
|
*/
|
|
1317
|
-
interface CommandContextExtension<E extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> {
|
|
1317
|
+
interface CommandContextExtension<E$1 extends GunshiParams['extensions'] = DefaultGunshiParams['extensions']> {
|
|
1318
1318
|
/**
|
|
1319
1319
|
* Plugin identifier
|
|
1320
1320
|
*/
|
|
@@ -1322,7 +1322,7 @@ interface CommandContextExtension<E extends GunshiParams['extensions'] = Default
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* Plugin extension factory
|
|
1324
1324
|
*/
|
|
1325
|
-
readonly factory: (ctx: CommandContextCore, cmd: Command) => Awaitable<E>;
|
|
1325
|
+
readonly factory: (ctx: CommandContextCore, cmd: Command) => Awaitable<E$1>;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* Plugin extension factory after hook
|
|
1328
1328
|
*/
|
|
@@ -1480,7 +1480,7 @@ type CommandDecorator<G extends GunshiParamsConstraint = DefaultGunshiParams> =
|
|
|
1480
1480
|
*
|
|
1481
1481
|
* @since v0.27.0
|
|
1482
1482
|
*/
|
|
1483
|
-
type RendererDecorator<T, G extends GunshiParamsConstraint = DefaultGunshiParams> = (baseRenderer: (ctx: Readonly<CommandContext<G>>) => Promise<T>, ctx: Readonly<CommandContext<G>>) => Promise<T>;
|
|
1483
|
+
type RendererDecorator<T$1, G extends GunshiParamsConstraint = DefaultGunshiParams> = (baseRenderer: (ctx: Readonly<CommandContext<G>>) => Promise<T$1>, ctx: Readonly<CommandContext<G>>) => Promise<T$1>;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* Validation errors renderer decorator type.
|
|
1486
1486
|
* A function that wraps a validation errors renderer to add or modify its behavior.
|
|
@@ -1506,7 +1506,7 @@ declare const CLI_OPTIONS_DEFAULT: CliOptions<DefaultGunshiParams>;
|
|
|
1506
1506
|
*
|
|
1507
1507
|
* @internal
|
|
1508
1508
|
*/
|
|
1509
|
-
type ExtractExtensions$1<E extends Record<string, CommandContextExtension>> = { [K in keyof E]: E[K] extends CommandContextExtension<infer T> ? T : never };
|
|
1509
|
+
type ExtractExtensions$1<E$1 extends Record<string, CommandContextExtension>> = { [K in keyof E$1]: E$1[K] extends CommandContextExtension<infer T> ? T : never };
|
|
1510
1510
|
/**
|
|
1511
1511
|
* Parameters of {@link createCommandContext}
|
|
1512
1512
|
*/
|
|
@@ -1514,7 +1514,7 @@ interface CommandContextParams<G extends GunshiParams | {
|
|
|
1514
1514
|
args: Args;
|
|
1515
1515
|
} | {
|
|
1516
1516
|
extensions: ExtendContext;
|
|
1517
|
-
}, V extends ArgValues<ExtractArgs<G>>, C extends Command<G> | LazyCommand<G> = Command<G>, E extends Record<string, CommandContextExtension> = Record<string, CommandContextExtension>> {
|
|
1517
|
+
}, V extends ArgValues<ExtractArgs<G>>, C extends Command<G> | LazyCommand<G> = Command<G>, E$1 extends Record<string, CommandContextExtension> = Record<string, CommandContextExtension>> {
|
|
1518
1518
|
/**
|
|
1519
1519
|
* An arguments of target command
|
|
1520
1520
|
*/
|
|
@@ -1558,7 +1558,7 @@ interface CommandContextParams<G extends GunshiParams | {
|
|
|
1558
1558
|
/**
|
|
1559
1559
|
* Plugin extensions to apply as the command context extension.
|
|
1560
1560
|
*/
|
|
1561
|
-
extensions?: E;
|
|
1561
|
+
extensions?: E$1;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* A command options, which is spicialized from `cli` function
|
|
1564
1564
|
*/
|
|
@@ -1574,7 +1574,7 @@ interface CommandContextParams<G extends GunshiParams | {
|
|
|
1574
1574
|
* @param param - A {@link CommandContextParams | parameters} to create a command context.
|
|
1575
1575
|
* @returns A {@link CommandContext | command context}, which is readonly.
|
|
1576
1576
|
*/
|
|
1577
|
-
declare function createCommandContext<G extends GunshiParamsConstraint = DefaultGunshiParams, V extends ArgValues<ExtractArgs<G>> = ArgValues<ExtractArgs<G>>, C extends Command<G> | LazyCommand<G> = Command<G>, E extends Record<string, CommandContextExtension> = {}>({
|
|
1577
|
+
declare function createCommandContext<G extends GunshiParamsConstraint = DefaultGunshiParams, V extends ArgValues<ExtractArgs<G>> = ArgValues<ExtractArgs<G>>, C extends Command<G> | LazyCommand<G> = Command<G>, E$1 extends Record<string, CommandContextExtension> = {}>({
|
|
1578
1578
|
args,
|
|
1579
1579
|
explicit,
|
|
1580
1580
|
values,
|
|
@@ -1588,9 +1588,9 @@ declare function createCommandContext<G extends GunshiParamsConstraint = Default
|
|
|
1588
1588
|
callMode,
|
|
1589
1589
|
omitted,
|
|
1590
1590
|
validationError
|
|
1591
|
-
}: CommandContextParams<G, V, C, E>): Promise<{} extends ExtractExtensions$1<E> ? Readonly<CommandContext<G>> : Readonly<CommandContext<GunshiParams<{
|
|
1591
|
+
}: CommandContextParams<G, V, C, E$1>): Promise<{} extends ExtractExtensions$1<E$1> ? Readonly<CommandContext<G>> : Readonly<CommandContext<GunshiParams<{
|
|
1592
1592
|
args: ExtractArgs<G>;
|
|
1593
|
-
extensions: ExtractExtensions$1<E>;
|
|
1593
|
+
extensions: ExtractExtensions$1<E$1>;
|
|
1594
1594
|
}>>>>;
|
|
1595
1595
|
//#endregion
|
|
1596
1596
|
export { ANONYMOUS_COMMAND_NAME, type ArgSchema, type ArgToken, type ArgValues, type Args, Awaitable, CLI_OPTIONS_DEFAULT, Command, CommandContext, CommandContextCore, CommandContextExtension, CommandContextParams, CommandDecorator, CommandExamplesFetcher, CommandRunner, DefaultGunshiParams, ExtendContext, ExtractArgs, ExtractExtensions, GunshiParams, GunshiParamsConstraint, LazyCommand, NormalizeToGunshiParams, OnPluginExtension, Plugin, PluginContext, PluginDependency, PluginExtension, PluginFunction, PluginOptions, PluginWithExtension, PluginWithoutExtension, Prettify, RendererDecorator, ValidationErrorsDecorator, createCommandContext, plugin };
|
package/lib/index.js
CHANGED
|
@@ -70,6 +70,21 @@ function deepFreeze(obj, ignores = []) {
|
|
|
70
70
|
//#endregion
|
|
71
71
|
//#region ../gunshi/src/context.ts
|
|
72
72
|
/**
|
|
73
|
+
* The entry for gunshi context.
|
|
74
|
+
* This module is exported for the purpose of testing the command.
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* ```js
|
|
78
|
+
* import { createCommandContext } from 'gunshi/context'
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
81
|
+
* @module
|
|
82
|
+
*/
|
|
83
|
+
/**
|
|
84
|
+
* @author kazuya kawaguchi (a.k.a. kazupon)
|
|
85
|
+
* @license MIT
|
|
86
|
+
*/
|
|
87
|
+
/**
|
|
73
88
|
* Create a command context.
|
|
74
89
|
*
|
|
75
90
|
* @param param - A {@link CommandContextParams | parameters} to create a command context.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gunshi/plugin",
|
|
3
3
|
"description": "plugin development kit for gunshi",
|
|
4
|
-
"version": "0.27.0-beta.
|
|
4
|
+
"version": "0.27.0-beta.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "kazuya kawaguchi",
|
|
7
7
|
"email": "kawakazu80@gmail.com"
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"deno": "^2.5.
|
|
54
|
+
"deno": "^2.5.6",
|
|
55
55
|
"jsr": "^0.13.5",
|
|
56
56
|
"jsr-exports-lint": "^0.4.1",
|
|
57
|
-
"publint": "^0.3.
|
|
58
|
-
"tsdown": "0.15.
|
|
59
|
-
"gunshi": "0.27.0-beta.
|
|
57
|
+
"publint": "^0.3.15",
|
|
58
|
+
"tsdown": "0.15.12",
|
|
59
|
+
"gunshi": "0.27.0-beta.4"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsdown",
|