chore: ⬆️ Upgrade dependencies, fix new linter issues

This commit is contained in:
Jesse Wierzbinski 2024-09-16 12:48:52 +02:00
parent 6c15ceb1e9
commit 23936d549f
No known key found for this signature in database
40 changed files with 154 additions and 154 deletions

View file

@ -1,8 +1,8 @@
import { fromZodError } from "zod-validation-error";
import type { SignatureConstructor } from "../cryptography";
import { WebFingerSchema } from "../schemas/webfinger";
import type { User } from "../types";
import { DEFAULT_UA } from "./constants";
import type { SignatureConstructor } from "../cryptography/index.ts";
import { WebFingerSchema } from "../schemas/webfinger.ts";
import type { User } from "../types.ts";
import { DEFAULT_UA } from "./constants.ts";
type HttpVerb = "GET" | "POST" | "PUT" | "PATCH" | "DELETE";