chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2025-05-01 16:27:34 +02:00
parent 441c7714d9
commit 4a4f72fd66
No known key found for this signature in database
92 changed files with 1056 additions and 1730 deletions

View file

@ -32,7 +32,7 @@
},
"private": true,
"dependencies": {
"drizzle-orm": "^0.42.0",
"drizzle-orm": "^0.43.1",
"hono": "^4.7.7",
"mitt": "^3.0.1",
"zod": "^3.24.2",

View file

@ -1,7 +1,7 @@
import { z } from "zod";
export const manifestSchema = z.object({
// biome-ignore lint/style/useNamingConvention: <explanation>
// biome-ignore lint/style/useNamingConvention: JSON schema requires this to be $schema
$schema: z.string().optional(),
name: z.string().min(3).max(100),
version: z
@ -94,7 +94,6 @@ export type Manifest = {
};
// This is a type guard to ensure that the schema and the type are in sync
// biome-ignore lint/nursery/useExplicitType: <explanation>
function assert<_T extends never>() {
// ...
}