@toolforge-js/sdk 0.6.0 → 0.8.0
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/dist/cli/index.js +49 -31
- package/dist/components/index.d.ts +26 -26
- package/package.json +3 -2
package/dist/cli/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import z from "zod";
|
|
|
5
5
|
import { readFileSync } from "node:fs";
|
|
6
6
|
import * as path from "node:path";
|
|
7
7
|
import { EventEmitter } from "node:events";
|
|
8
|
+
import ora from "ora";
|
|
8
9
|
import { pino } from "pino";
|
|
9
10
|
import { P, match } from "ts-pattern";
|
|
10
11
|
import { setTimeout as setTimeout$1 } from "node:timers/promises";
|
|
@@ -3800,39 +3801,24 @@ var ForgeRunner = class extends EventEmitter {
|
|
|
3800
3801
|
//#endregion
|
|
3801
3802
|
//#region src/cli/index.ts
|
|
3802
3803
|
const version = JSON.parse(readFileSync(path.resolve(__dirname, "../../package.json"), "utf-8")).version;
|
|
3803
|
-
program.name("toolforge
|
|
3804
|
-
program.command("dev").option("-c, --config <path>", "path to the tool-forge config file", "toolforge.config.ts").option("-d, --debug", "enable debug logging", false).action(async function startServer() {
|
|
3805
|
-
const
|
|
3806
|
-
|
|
3807
|
-
|
|
3804
|
+
program.name("toolforge").description("Tool Forge SDK cli").version(version);
|
|
3805
|
+
program.command("dev").description("start the tool forge development server").option("-c, --config <path>", "path to the tool-forge config file", (val) => z$1.string().parse(val), "toolforge.config.ts").option("-d, --debug", "enable debug logging", false).action(async function startServer() {
|
|
3806
|
+
const debug = z$1.boolean().optional().default(false).parse(this.opts().debug);
|
|
3807
|
+
await startToolForge({
|
|
3808
|
+
configRelPath: z$1.string().parse(this.opts().config),
|
|
3809
|
+
debug,
|
|
3810
|
+
mode: "development"
|
|
3811
|
+
});
|
|
3812
|
+
});
|
|
3813
|
+
program.command("start").description("start the tool forge server in production mode").option("-c, --config <path>", "path to the tool-forge config file", (val) => z$1.string().parse(val), "toolforge.config.ts").option("-d, --debug", "enable debug logging", false).action(async function startServer() {
|
|
3814
|
+
const debug = z$1.boolean().optional().default(false).parse(this.opts().debug);
|
|
3815
|
+
await startToolForge({
|
|
3816
|
+
configRelPath: z$1.string().parse(this.opts().config),
|
|
3817
|
+
debug,
|
|
3818
|
+
mode: "production"
|
|
3808
3819
|
});
|
|
3809
|
-
try {
|
|
3810
|
-
const configRelPath = z$1.string().parse(this.opts().config);
|
|
3811
|
-
const configPath = path.resolve(process.cwd(), configRelPath);
|
|
3812
|
-
const config = toolForgeConfigSchema.parse(await import(configPath).then((mod) => mod.default));
|
|
3813
|
-
logger.debug({ config }, "loaded config from %s", configPath);
|
|
3814
|
-
const runner = new ForgeRunner(config, { mode: "development" }, logger);
|
|
3815
|
-
runner.on("error", async (error) => {
|
|
3816
|
-
logger.error(error, "tool runner error - shutting down");
|
|
3817
|
-
await runner.stop();
|
|
3818
|
-
process.exit(1);
|
|
3819
|
-
});
|
|
3820
|
-
process.on("SIGTERM", async () => {
|
|
3821
|
-
logger.info("gracefully shutting down tool runner...");
|
|
3822
|
-
await runner.stop();
|
|
3823
|
-
process.exit(1);
|
|
3824
|
-
});
|
|
3825
|
-
process.on("SIGINT", async () => {
|
|
3826
|
-
logger.info("gracefully shutting down tool runner...");
|
|
3827
|
-
await runner.stop();
|
|
3828
|
-
process.exit(1);
|
|
3829
|
-
});
|
|
3830
|
-
} catch (error) {
|
|
3831
|
-
logger.error(error, "failed to start tool runner");
|
|
3832
|
-
process.exit(1);
|
|
3833
|
-
}
|
|
3834
3820
|
});
|
|
3835
|
-
program.command("build").description("build the tools for production").option("-c, --config <path>", "path to the tool-forge config file", "toolforge.config.ts").option("-d, --debug", "enable debug logging", false).action(async function() {
|
|
3821
|
+
program.command("build").description("build the tools for production").option("-c, --config <path>", "path to the tool-forge config file", (val) => z$1.string().parse(val), "toolforge.config.ts").option("-d, --debug", "enable debug logging", false).action(async function() {
|
|
3836
3822
|
const logger = pino({
|
|
3837
3823
|
level: z$1.boolean().optional().default(false).parse(this.opts().debug) ? "debug" : "info",
|
|
3838
3824
|
transport: { target: "pino-pretty" }
|
|
@@ -3861,6 +3847,38 @@ program.command("build").description("build the tools for production").option("-
|
|
|
3861
3847
|
process.exit(1);
|
|
3862
3848
|
}
|
|
3863
3849
|
});
|
|
3850
|
+
async function startToolForge({ configRelPath, debug, mode }) {
|
|
3851
|
+
const logger = pino({
|
|
3852
|
+
level: debug ? "debug" : "info",
|
|
3853
|
+
transport: { target: "pino-pretty" }
|
|
3854
|
+
});
|
|
3855
|
+
try {
|
|
3856
|
+
const spinner = ora("loading configuration...").start();
|
|
3857
|
+
const configPath = path.resolve(process.cwd(), configRelPath);
|
|
3858
|
+
const config = toolForgeConfigSchema.parse(await import(configPath).then((mod) => mod.default));
|
|
3859
|
+
spinner.stop();
|
|
3860
|
+
logger.debug({ config }, "loaded config from %s", configPath);
|
|
3861
|
+
const runner = new ForgeRunner(config, { mode }, logger);
|
|
3862
|
+
runner.on("error", async (error) => {
|
|
3863
|
+
logger.error(error, "tool runner error - shutting down");
|
|
3864
|
+
await runner.stop();
|
|
3865
|
+
process.exit(1);
|
|
3866
|
+
});
|
|
3867
|
+
process.on("SIGTERM", async () => {
|
|
3868
|
+
logger.info("gracefully shutting down tool runner...");
|
|
3869
|
+
await runner.stop();
|
|
3870
|
+
process.exit(1);
|
|
3871
|
+
});
|
|
3872
|
+
process.on("SIGINT", async () => {
|
|
3873
|
+
logger.info("gracefully shutting down tool runner...");
|
|
3874
|
+
await runner.stop();
|
|
3875
|
+
process.exit(1);
|
|
3876
|
+
});
|
|
3877
|
+
} catch (error) {
|
|
3878
|
+
logger.error(error, "failed to start tool runner");
|
|
3879
|
+
process.exit(1);
|
|
3880
|
+
}
|
|
3881
|
+
}
|
|
3864
3882
|
program.parse(Bun.argv);
|
|
3865
3883
|
|
|
3866
3884
|
//#endregion
|
|
@@ -99,8 +99,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
99
99
|
chartType: z$1.ZodLiteral<"progress-bar">;
|
|
100
100
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
101
101
|
default: "default";
|
|
102
|
-
success: "success";
|
|
103
102
|
error: "error";
|
|
103
|
+
success: "success";
|
|
104
104
|
neutral: "neutral";
|
|
105
105
|
warning: "warning";
|
|
106
106
|
}>>>;
|
|
@@ -111,8 +111,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
111
111
|
chartType: z$1.ZodLiteral<"progress-circle">;
|
|
112
112
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
113
113
|
default: "default";
|
|
114
|
-
success: "success";
|
|
115
114
|
error: "error";
|
|
115
|
+
success: "success";
|
|
116
116
|
neutral: "neutral";
|
|
117
117
|
warning: "warning";
|
|
118
118
|
}>>>;
|
|
@@ -615,8 +615,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
615
615
|
label: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>;
|
|
616
616
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
617
617
|
default: "default";
|
|
618
|
-
success: "success";
|
|
619
618
|
error: "error";
|
|
619
|
+
success: "success";
|
|
620
620
|
neutral: "neutral";
|
|
621
621
|
warning: "warning";
|
|
622
622
|
}>>>;
|
|
@@ -630,8 +630,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
630
630
|
radius: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
631
631
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
632
632
|
default: "default";
|
|
633
|
-
success: "success";
|
|
634
633
|
error: "error";
|
|
634
|
+
success: "success";
|
|
635
635
|
neutral: "neutral";
|
|
636
636
|
warning: "warning";
|
|
637
637
|
}>>>;
|
|
@@ -888,8 +888,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
888
888
|
chartType: z$1.ZodLiteral<"progress-bar">;
|
|
889
889
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
890
890
|
default: "default";
|
|
891
|
-
success: "success";
|
|
892
891
|
error: "error";
|
|
892
|
+
success: "success";
|
|
893
893
|
neutral: "neutral";
|
|
894
894
|
warning: "warning";
|
|
895
895
|
}>>>;
|
|
@@ -900,8 +900,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
900
900
|
chartType: z$1.ZodLiteral<"progress-circle">;
|
|
901
901
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
902
902
|
default: "default";
|
|
903
|
-
success: "success";
|
|
904
903
|
error: "error";
|
|
904
|
+
success: "success";
|
|
905
905
|
neutral: "neutral";
|
|
906
906
|
warning: "warning";
|
|
907
907
|
}>>>;
|
|
@@ -1404,8 +1404,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1404
1404
|
label: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>;
|
|
1405
1405
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1406
1406
|
default: "default";
|
|
1407
|
-
success: "success";
|
|
1408
1407
|
error: "error";
|
|
1408
|
+
success: "success";
|
|
1409
1409
|
neutral: "neutral";
|
|
1410
1410
|
warning: "warning";
|
|
1411
1411
|
}>>>;
|
|
@@ -1419,8 +1419,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1419
1419
|
radius: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
1420
1420
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1421
1421
|
default: "default";
|
|
1422
|
-
success: "success";
|
|
1423
1422
|
error: "error";
|
|
1423
|
+
success: "success";
|
|
1424
1424
|
neutral: "neutral";
|
|
1425
1425
|
warning: "warning";
|
|
1426
1426
|
}>>>;
|
|
@@ -1655,8 +1655,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1655
1655
|
type: z$1.ZodLiteral<"badge">;
|
|
1656
1656
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1657
1657
|
default: "default";
|
|
1658
|
-
success: "success";
|
|
1659
1658
|
error: "error";
|
|
1659
|
+
success: "success";
|
|
1660
1660
|
neutral: "neutral";
|
|
1661
1661
|
warning: "warning";
|
|
1662
1662
|
}>>>;
|
|
@@ -1678,8 +1678,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1678
1678
|
maxValue: z$1.ZodNumber;
|
|
1679
1679
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1680
1680
|
default: "default";
|
|
1681
|
-
success: "success";
|
|
1682
1681
|
error: "error";
|
|
1682
|
+
success: "success";
|
|
1683
1683
|
neutral: "neutral";
|
|
1684
1684
|
warning: "warning";
|
|
1685
1685
|
}>>>;
|
|
@@ -1769,8 +1769,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1769
1769
|
type: z$1.ZodLiteral<"badge">;
|
|
1770
1770
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1771
1771
|
default: "default";
|
|
1772
|
-
success: "success";
|
|
1773
1772
|
error: "error";
|
|
1773
|
+
success: "success";
|
|
1774
1774
|
neutral: "neutral";
|
|
1775
1775
|
warning: "warning";
|
|
1776
1776
|
}>>>;
|
|
@@ -1792,8 +1792,8 @@ declare const showMessageMessageSchema: z$1.ZodObject<{
|
|
|
1792
1792
|
maxValue: z$1.ZodNumber;
|
|
1793
1793
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
1794
1794
|
default: "default";
|
|
1795
|
-
success: "success";
|
|
1796
1795
|
error: "error";
|
|
1796
|
+
success: "success";
|
|
1797
1797
|
neutral: "neutral";
|
|
1798
1798
|
warning: "warning";
|
|
1799
1799
|
}>>>;
|
|
@@ -2913,8 +2913,8 @@ declare const chartBlock: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
2913
2913
|
label: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>;
|
|
2914
2914
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
2915
2915
|
default: "default";
|
|
2916
|
-
success: "success";
|
|
2917
2916
|
error: "error";
|
|
2917
|
+
success: "success";
|
|
2918
2918
|
neutral: "neutral";
|
|
2919
2919
|
warning: "warning";
|
|
2920
2920
|
}>>>;
|
|
@@ -2928,8 +2928,8 @@ declare const chartBlock: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
2928
2928
|
radius: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
2929
2929
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
2930
2930
|
default: "default";
|
|
2931
|
-
success: "success";
|
|
2932
2931
|
error: "error";
|
|
2932
|
+
success: "success";
|
|
2933
2933
|
neutral: "neutral";
|
|
2934
2934
|
warning: "warning";
|
|
2935
2935
|
}>>>;
|
|
@@ -3304,8 +3304,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
3304
3304
|
chartType: z$1.ZodLiteral<"progress-bar">;
|
|
3305
3305
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
3306
3306
|
default: "default";
|
|
3307
|
-
success: "success";
|
|
3308
3307
|
error: "error";
|
|
3308
|
+
success: "success";
|
|
3309
3309
|
neutral: "neutral";
|
|
3310
3310
|
warning: "warning";
|
|
3311
3311
|
}>>>;
|
|
@@ -3316,8 +3316,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
3316
3316
|
chartType: z$1.ZodLiteral<"progress-circle">;
|
|
3317
3317
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
3318
3318
|
default: "default";
|
|
3319
|
-
success: "success";
|
|
3320
3319
|
error: "error";
|
|
3320
|
+
success: "success";
|
|
3321
3321
|
neutral: "neutral";
|
|
3322
3322
|
warning: "warning";
|
|
3323
3323
|
}>>>;
|
|
@@ -3820,8 +3820,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
3820
3820
|
label: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>;
|
|
3821
3821
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
3822
3822
|
default: "default";
|
|
3823
|
-
success: "success";
|
|
3824
3823
|
error: "error";
|
|
3824
|
+
success: "success";
|
|
3825
3825
|
neutral: "neutral";
|
|
3826
3826
|
warning: "warning";
|
|
3827
3827
|
}>>>;
|
|
@@ -3835,8 +3835,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
3835
3835
|
radius: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
3836
3836
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
3837
3837
|
default: "default";
|
|
3838
|
-
success: "success";
|
|
3839
3838
|
error: "error";
|
|
3839
|
+
success: "success";
|
|
3840
3840
|
neutral: "neutral";
|
|
3841
3841
|
warning: "warning";
|
|
3842
3842
|
}>>>;
|
|
@@ -4093,8 +4093,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4093
4093
|
chartType: z$1.ZodLiteral<"progress-bar">;
|
|
4094
4094
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4095
4095
|
default: "default";
|
|
4096
|
-
success: "success";
|
|
4097
4096
|
error: "error";
|
|
4097
|
+
success: "success";
|
|
4098
4098
|
neutral: "neutral";
|
|
4099
4099
|
warning: "warning";
|
|
4100
4100
|
}>>>;
|
|
@@ -4105,8 +4105,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4105
4105
|
chartType: z$1.ZodLiteral<"progress-circle">;
|
|
4106
4106
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4107
4107
|
default: "default";
|
|
4108
|
-
success: "success";
|
|
4109
4108
|
error: "error";
|
|
4109
|
+
success: "success";
|
|
4110
4110
|
neutral: "neutral";
|
|
4111
4111
|
warning: "warning";
|
|
4112
4112
|
}>>>;
|
|
@@ -4609,8 +4609,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4609
4609
|
label: z$1.ZodOptional<z$1.ZodUnion<[z$1.ZodString, z$1.ZodNumber]>>;
|
|
4610
4610
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4611
4611
|
default: "default";
|
|
4612
|
-
success: "success";
|
|
4613
4612
|
error: "error";
|
|
4613
|
+
success: "success";
|
|
4614
4614
|
neutral: "neutral";
|
|
4615
4615
|
warning: "warning";
|
|
4616
4616
|
}>>>;
|
|
@@ -4624,8 +4624,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4624
4624
|
radius: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
4625
4625
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4626
4626
|
default: "default";
|
|
4627
|
-
success: "success";
|
|
4628
4627
|
error: "error";
|
|
4628
|
+
success: "success";
|
|
4629
4629
|
neutral: "neutral";
|
|
4630
4630
|
warning: "warning";
|
|
4631
4631
|
}>>>;
|
|
@@ -4860,8 +4860,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4860
4860
|
type: z$1.ZodLiteral<"badge">;
|
|
4861
4861
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4862
4862
|
default: "default";
|
|
4863
|
-
success: "success";
|
|
4864
4863
|
error: "error";
|
|
4864
|
+
success: "success";
|
|
4865
4865
|
neutral: "neutral";
|
|
4866
4866
|
warning: "warning";
|
|
4867
4867
|
}>>>;
|
|
@@ -4883,8 +4883,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4883
4883
|
maxValue: z$1.ZodNumber;
|
|
4884
4884
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4885
4885
|
default: "default";
|
|
4886
|
-
success: "success";
|
|
4887
4886
|
error: "error";
|
|
4887
|
+
success: "success";
|
|
4888
4888
|
neutral: "neutral";
|
|
4889
4889
|
warning: "warning";
|
|
4890
4890
|
}>>>;
|
|
@@ -4974,8 +4974,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4974
4974
|
type: z$1.ZodLiteral<"badge">;
|
|
4975
4975
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4976
4976
|
default: "default";
|
|
4977
|
-
success: "success";
|
|
4978
4977
|
error: "error";
|
|
4978
|
+
success: "success";
|
|
4979
4979
|
neutral: "neutral";
|
|
4980
4980
|
warning: "warning";
|
|
4981
4981
|
}>>>;
|
|
@@ -4997,8 +4997,8 @@ declare const blockSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
4997
4997
|
maxValue: z$1.ZodNumber;
|
|
4998
4998
|
variant: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodEnum<{
|
|
4999
4999
|
default: "default";
|
|
5000
|
-
success: "success";
|
|
5001
5000
|
error: "error";
|
|
5001
|
+
success: "success";
|
|
5002
5002
|
neutral: "neutral";
|
|
5003
5003
|
warning: "warning";
|
|
5004
5004
|
}>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolforge-js/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"es-toolkit": "1.39.10",
|
|
22
22
|
"esbuild": "0.27.0",
|
|
23
23
|
"nanoid": "5.1.5",
|
|
24
|
+
"ora": "9.0.0",
|
|
24
25
|
"picocolors": "1.1.1",
|
|
25
26
|
"pino": "9.11.0",
|
|
26
27
|
"pino-pretty": "13.1.1",
|
|
@@ -34,6 +35,6 @@
|
|
|
34
35
|
"typescript": "5.9.2"
|
|
35
36
|
},
|
|
36
37
|
"bin": {
|
|
37
|
-
"toolforge
|
|
38
|
+
"toolforge": "index.js"
|
|
38
39
|
}
|
|
39
40
|
}
|