@alpic-ai/api 0.0.0-staging.e36f4d7 → 0.0.0-staging.e4f6dc1
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/index.d.mts +120 -3
- package/dist/index.mjs +76 -13
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -10,6 +10,12 @@ type ApiContext = {
|
|
|
10
10
|
awsCognitoUserSub: string | undefined;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
+
declare const deploymentStatusSchema: z.ZodEnum<{
|
|
14
|
+
ongoing: "ongoing";
|
|
15
|
+
deployed: "deployed";
|
|
16
|
+
failed: "failed";
|
|
17
|
+
canceled: "canceled";
|
|
18
|
+
}>;
|
|
13
19
|
declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
14
20
|
projectId: z.ZodString;
|
|
15
21
|
name: z.ZodString;
|
|
@@ -96,6 +102,13 @@ declare const contract: {
|
|
|
96
102
|
list: {
|
|
97
103
|
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
98
104
|
projectId: z.ZodString;
|
|
105
|
+
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
|
+
ongoing: "ongoing";
|
|
107
|
+
deployed: "deployed";
|
|
108
|
+
failed: "failed";
|
|
109
|
+
canceled: "canceled";
|
|
110
|
+
}>>>;
|
|
111
|
+
environmentId: z.ZodOptional<z.ZodString>;
|
|
99
112
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
100
113
|
id: z.ZodString;
|
|
101
114
|
status: z.ZodEnum<{
|
|
@@ -111,8 +124,10 @@ declare const contract: {
|
|
|
111
124
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
112
125
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
113
126
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
114
|
-
isCurrent: z.ZodBoolean;
|
|
115
127
|
environmentId: z.ZodString;
|
|
128
|
+
environmentName: z.ZodString;
|
|
129
|
+
isCurrent: z.ZodBoolean;
|
|
130
|
+
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
116
131
|
}, z.core.$strip>>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
117
132
|
NOT_FOUND: {};
|
|
118
133
|
}>, Record<never, never>>;
|
|
@@ -135,6 +150,9 @@ declare const contract: {
|
|
|
135
150
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
136
151
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
137
152
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
153
|
+
environmentId: z.ZodString;
|
|
154
|
+
environmentName: z.ZodString;
|
|
155
|
+
isCurrent: z.ZodBoolean;
|
|
138
156
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
139
157
|
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
140
158
|
NOT_FOUND: {};
|
|
@@ -144,7 +162,7 @@ declare const contract: {
|
|
|
144
162
|
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
145
163
|
teamId: z.ZodOptional<z.ZodString>;
|
|
146
164
|
}, z.core.$strip>>, z.ZodObject<{
|
|
147
|
-
uploadUrl: z.
|
|
165
|
+
uploadUrl: z.ZodURL;
|
|
148
166
|
token: z.ZodString;
|
|
149
167
|
expiresAt: z.ZodCoercedDate<unknown>;
|
|
150
168
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -220,6 +238,9 @@ declare const contract: {
|
|
|
220
238
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
221
239
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
222
240
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
241
|
+
environmentId: z.ZodString;
|
|
242
|
+
environmentName: z.ZodString;
|
|
243
|
+
isCurrent: z.ZodBoolean;
|
|
223
244
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
224
245
|
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
225
246
|
NOT_FOUND: {};
|
|
@@ -625,6 +646,79 @@ declare const contract: {
|
|
|
625
646
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
626
647
|
};
|
|
627
648
|
};
|
|
649
|
+
distribution: {
|
|
650
|
+
publish: {
|
|
651
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
652
|
+
projectId: z.ZodString;
|
|
653
|
+
domain: z.ZodString;
|
|
654
|
+
title: z.ZodString;
|
|
655
|
+
description: z.ZodString;
|
|
656
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
657
|
+
iconSrc: z.ZodOptional<z.ZodURL>;
|
|
658
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
659
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
660
|
+
serverFields: z.ZodObject<{
|
|
661
|
+
$schema: z.ZodString;
|
|
662
|
+
name: z.ZodString;
|
|
663
|
+
description: z.ZodString;
|
|
664
|
+
version: z.ZodOptional<z.ZodString>;
|
|
665
|
+
title: z.ZodOptional<z.ZodString>;
|
|
666
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
667
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
668
|
+
src: z.ZodURL;
|
|
669
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
670
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
671
|
+
}, z.core.$strip>>>;
|
|
672
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
673
|
+
type: z.ZodString;
|
|
674
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
675
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
676
|
+
name: z.ZodString;
|
|
677
|
+
description: z.ZodString;
|
|
678
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
680
|
+
}, z.core.$strip>>>;
|
|
681
|
+
}, z.core.$strip>>>;
|
|
682
|
+
}, z.core.$strip>;
|
|
683
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
684
|
+
NOT_FOUND: {};
|
|
685
|
+
BAD_REQUEST: {};
|
|
686
|
+
}>, Record<never, never>>;
|
|
687
|
+
};
|
|
688
|
+
info: {
|
|
689
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
690
|
+
projectId: z.ZodString;
|
|
691
|
+
domain: z.ZodString;
|
|
692
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
693
|
+
serverFields: z.ZodObject<{
|
|
694
|
+
$schema: z.ZodString;
|
|
695
|
+
name: z.ZodString;
|
|
696
|
+
description: z.ZodString;
|
|
697
|
+
version: z.ZodOptional<z.ZodString>;
|
|
698
|
+
title: z.ZodOptional<z.ZodString>;
|
|
699
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
700
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
701
|
+
src: z.ZodURL;
|
|
702
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
703
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
704
|
+
}, z.core.$strip>>>;
|
|
705
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
706
|
+
type: z.ZodString;
|
|
707
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
708
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
709
|
+
name: z.ZodString;
|
|
710
|
+
description: z.ZodString;
|
|
711
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
712
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
713
|
+
}, z.core.$strip>>>;
|
|
714
|
+
}, z.core.$strip>>>;
|
|
715
|
+
}, z.core.$strip>;
|
|
716
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
717
|
+
NOT_FOUND: {};
|
|
718
|
+
BAD_REQUEST: {};
|
|
719
|
+
}>, Record<never, never>>;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
628
722
|
};
|
|
629
723
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
630
724
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
@@ -659,5 +753,28 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
659
753
|
streamablehttp: "streamablehttp";
|
|
660
754
|
}>;
|
|
661
755
|
type Transport = z.infer<typeof transportSchema>;
|
|
756
|
+
declare const serverFieldsSchema: z.ZodObject<{
|
|
757
|
+
$schema: z.ZodString;
|
|
758
|
+
name: z.ZodString;
|
|
759
|
+
description: z.ZodString;
|
|
760
|
+
version: z.ZodOptional<z.ZodString>;
|
|
761
|
+
title: z.ZodOptional<z.ZodString>;
|
|
762
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
763
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
764
|
+
src: z.ZodURL;
|
|
765
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
766
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
767
|
+
}, z.core.$strip>>>;
|
|
768
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
769
|
+
type: z.ZodString;
|
|
770
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
771
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
772
|
+
name: z.ZodString;
|
|
773
|
+
description: z.ZodString;
|
|
774
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
775
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
776
|
+
}, z.core.$strip>>>;
|
|
777
|
+
}, z.core.$strip>>>;
|
|
778
|
+
}, z.core.$strip>;
|
|
662
779
|
//#endregion
|
|
663
|
-
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
780
|
+
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, serverFieldsSchema, transportSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -60,6 +60,29 @@ const transportSchema = z.enum([
|
|
|
60
60
|
"sse",
|
|
61
61
|
"streamablehttp"
|
|
62
62
|
]);
|
|
63
|
+
const serverFieldsSchema = z.object({
|
|
64
|
+
$schema: z.string(),
|
|
65
|
+
name: z.string(),
|
|
66
|
+
description: z.string(),
|
|
67
|
+
version: z.string().optional(),
|
|
68
|
+
title: z.string().optional(),
|
|
69
|
+
websiteUrl: z.url().optional(),
|
|
70
|
+
icons: z.array(z.object({
|
|
71
|
+
src: z.url(),
|
|
72
|
+
mimeType: z.string().optional(),
|
|
73
|
+
sizes: z.array(z.string()).optional()
|
|
74
|
+
})).optional(),
|
|
75
|
+
remotes: z.array(z.object({
|
|
76
|
+
type: z.string(),
|
|
77
|
+
url: z.url().optional(),
|
|
78
|
+
headers: z.array(z.object({
|
|
79
|
+
name: z.string(),
|
|
80
|
+
description: z.string(),
|
|
81
|
+
isRequired: z.boolean().optional(),
|
|
82
|
+
isSecret: z.boolean().optional()
|
|
83
|
+
})).optional()
|
|
84
|
+
})).optional()
|
|
85
|
+
});
|
|
63
86
|
//#endregion
|
|
64
87
|
//#region src/api.contract.ts
|
|
65
88
|
const deploymentStatusSchema = z.enum([
|
|
@@ -84,9 +107,12 @@ const deploymentSchema = z.object({
|
|
|
84
107
|
authorUsername: z.string().nullable(),
|
|
85
108
|
authorAvatarUrl: z.string().nullable(),
|
|
86
109
|
startedAt: z.coerce.date().nullable(),
|
|
87
|
-
completedAt: z.coerce.date().nullable()
|
|
110
|
+
completedAt: z.coerce.date().nullable(),
|
|
111
|
+
environmentId: z.string(),
|
|
112
|
+
environmentName: z.string(),
|
|
113
|
+
isCurrent: z.boolean(),
|
|
114
|
+
deploymentPageUrl: z.url().nullable()
|
|
88
115
|
});
|
|
89
|
-
const deploymentWithPageUrlSchema = deploymentSchema.extend({ deploymentPageUrl: z.url().nullable() });
|
|
90
116
|
const isValidLogTimeInput = (value) => {
|
|
91
117
|
if (ms(value) !== void 0) return true;
|
|
92
118
|
return !Number.isNaN(new Date(value).getTime());
|
|
@@ -318,7 +344,7 @@ const deployEnvironmentContractV1 = oc.route({
|
|
|
318
344
|
}).input(z.object({
|
|
319
345
|
environmentId: z.string().describe("The ID of the environment to deploy"),
|
|
320
346
|
token: z.string().describe("The token to identify the source archive").optional()
|
|
321
|
-
})).output(
|
|
347
|
+
})).output(deploymentSchema);
|
|
322
348
|
const uploadDeploymentArtifactContractV1 = oc.route({
|
|
323
349
|
path: "/v1/deployments/upload",
|
|
324
350
|
method: "POST",
|
|
@@ -327,21 +353,22 @@ const uploadDeploymentArtifactContractV1 = oc.route({
|
|
|
327
353
|
tags: ["deployments"],
|
|
328
354
|
successDescription: "The presigned upload URL has been generated successfully"
|
|
329
355
|
}).input(z.object({ teamId: z.string().optional() }).optional()).output(z.object({
|
|
330
|
-
uploadUrl: z.
|
|
356
|
+
uploadUrl: z.url().describe("Presigned S3 URL to upload the source archive with HTTP PUT"),
|
|
331
357
|
token: z.string().describe("Token to identify the source archive"),
|
|
332
358
|
expiresAt: z.coerce.date().describe("Expiration date of the presigned URL")
|
|
333
359
|
}));
|
|
334
|
-
const
|
|
360
|
+
const listDeploymentsContractV1 = oc.route({
|
|
335
361
|
path: "/v1/projects/{projectId}/deployments",
|
|
336
362
|
method: "GET",
|
|
337
363
|
summary: "List project deployments",
|
|
338
364
|
description: "List all deployments for a project",
|
|
339
365
|
tags: ["deployments"],
|
|
340
366
|
successDescription: "The list of deployments"
|
|
341
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
367
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
368
|
+
projectId: z.string().describe("The ID of the project"),
|
|
369
|
+
status: z.array(deploymentStatusSchema).optional().describe("Filter by one or more statuses"),
|
|
370
|
+
environmentId: z.string().optional().describe("Filter by environment ID")
|
|
371
|
+
})).output(z.array(deploymentSchema));
|
|
345
372
|
const getDeploymentContractV1 = oc.route({
|
|
346
373
|
path: "/v1/deployments/{deploymentId}",
|
|
347
374
|
method: "GET",
|
|
@@ -349,7 +376,7 @@ const getDeploymentContractV1 = oc.route({
|
|
|
349
376
|
description: "Get a deployment by ID",
|
|
350
377
|
tags: ["deployments"],
|
|
351
378
|
successDescription: "The deployment details"
|
|
352
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(
|
|
379
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(deploymentSchema);
|
|
353
380
|
const getLogsContractV1 = oc.route({
|
|
354
381
|
path: "/v1/environments/{environmentId}/logs",
|
|
355
382
|
method: "GET",
|
|
@@ -468,11 +495,43 @@ const getTunnelTicketContractV1 = oc.route({
|
|
|
468
495
|
ticket: z.string().describe("The signed tunnel ticket"),
|
|
469
496
|
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
470
497
|
}));
|
|
498
|
+
const publishServerContractV1 = oc.route({
|
|
499
|
+
path: "/v1/distribution/publish",
|
|
500
|
+
method: "POST",
|
|
501
|
+
summary: "Publish a server to the MCP registry",
|
|
502
|
+
tags: ["distribution"],
|
|
503
|
+
successDescription: "The server has been published successfully"
|
|
504
|
+
}).errors({
|
|
505
|
+
NOT_FOUND: {},
|
|
506
|
+
BAD_REQUEST: {}
|
|
507
|
+
}).input(z.object({
|
|
508
|
+
projectId: z.string(),
|
|
509
|
+
domain: z.string(),
|
|
510
|
+
title: z.string().min(1).max(100),
|
|
511
|
+
description: z.string().min(1).max(100),
|
|
512
|
+
websiteUrl: z.url().max(255).optional(),
|
|
513
|
+
iconSrc: z.url().max(255).optional(),
|
|
514
|
+
dryRun: z.boolean().optional()
|
|
515
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
516
|
+
const getServerInfoContractV1 = oc.route({
|
|
517
|
+
path: "/v1/distribution/info",
|
|
518
|
+
method: "GET",
|
|
519
|
+
summary: "Get server info",
|
|
520
|
+
description: "Get info about a server",
|
|
521
|
+
tags: ["distribution"],
|
|
522
|
+
successDescription: "The server info"
|
|
523
|
+
}).errors({
|
|
524
|
+
NOT_FOUND: {},
|
|
525
|
+
BAD_REQUEST: {}
|
|
526
|
+
}).input(z.object({
|
|
527
|
+
projectId: z.string(),
|
|
528
|
+
domain: z.string()
|
|
529
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
471
530
|
const contract = {
|
|
472
531
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
473
532
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
474
533
|
deployments: {
|
|
475
|
-
list: { v1:
|
|
534
|
+
list: { v1: listDeploymentsContractV1 },
|
|
476
535
|
get: { v1: getDeploymentContractV1 },
|
|
477
536
|
uploadArtifact: { v1: uploadDeploymentArtifactContractV1 },
|
|
478
537
|
getLogs: { v1: getDeploymentLogsContractV1 }
|
|
@@ -496,7 +555,11 @@ const contract = {
|
|
|
496
555
|
create: { v1: createProjectContractV1 },
|
|
497
556
|
delete: { v1: deleteProjectContractV1 }
|
|
498
557
|
},
|
|
499
|
-
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } }
|
|
558
|
+
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } },
|
|
559
|
+
distribution: {
|
|
560
|
+
publish: { v1: publishServerContractV1 },
|
|
561
|
+
info: { v1: getServerInfoContractV1 }
|
|
562
|
+
}
|
|
500
563
|
};
|
|
501
564
|
//#endregion
|
|
502
|
-
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
565
|
+
export { buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, serverFieldsSchema, transportSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "0.0.0-staging.
|
|
3
|
+
"version": "0.0.0-staging.e4f6dc1",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"author": "Alpic",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.13.
|
|
20
|
+
"@orpc/contract": "^1.13.8",
|
|
21
21
|
"ms": "^2.1.3",
|
|
22
22
|
"zod": "^4.3.6"
|
|
23
23
|
},
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
26
26
|
"@types/ms": "^2.1.0",
|
|
27
27
|
"shx": "^0.4.0",
|
|
28
|
-
"tsdown": "^0.21.
|
|
28
|
+
"tsdown": "^0.21.4",
|
|
29
29
|
"typescript": "^5.9.3",
|
|
30
|
-
"vitest": "^4.0
|
|
30
|
+
"vitest": "^4.1.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "shx rm -rf dist && tsdown",
|
|
34
|
-
"format": "biome check --write --error-on-warnings",
|
|
34
|
+
"format": "biome check --write --error-on-warnings .",
|
|
35
35
|
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
36
36
|
"test:unit": "vitest run",
|
|
37
|
-
"test:format": "
|
|
37
|
+
"test:format": "biome check --error-on-warnings .",
|
|
38
38
|
"test:type": "tsc --noEmit",
|
|
39
39
|
"publish:npm": "pnpm publish --tag \"${NPM_TAG}\" --access public --no-git-checks"
|
|
40
40
|
}
|