mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
chore: ⬆️ Upgrade dependencies
This commit is contained in:
parent
4e38749ccb
commit
cd4b021aec
14
package.json
14
package.json
|
|
@ -81,7 +81,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.9.4",
|
"@biomejs/biome": "^1.9.4",
|
||||||
"@types/bun": "^1.1.13",
|
"@types/bun": "^1.1.14",
|
||||||
"@types/cli-progress": "^3.11.6",
|
"@types/cli-progress": "^3.11.6",
|
||||||
"@types/cli-table": "^0.3.4",
|
"@types/cli-table": "^0.3.4",
|
||||||
"@types/html-to-text": "^9.0.4",
|
"@types/html-to-text": "^9.0.4",
|
||||||
|
|
@ -111,16 +111,16 @@
|
||||||
"@bull-board/api": "^6.5.3",
|
"@bull-board/api": "^6.5.3",
|
||||||
"@bull-board/hono": "^6.5.3",
|
"@bull-board/hono": "^6.5.3",
|
||||||
"@hackmd/markdown-it-task-lists": "^2.1.4",
|
"@hackmd/markdown-it-task-lists": "^2.1.4",
|
||||||
"@hono/hono": "npm:@jsr/hono__hono@4.6.11",
|
"@hono/hono": "npm:@jsr/hono__hono@4.6.12",
|
||||||
"@hono/prometheus": "^1.0.1",
|
"@hono/prometheus": "^1.0.1",
|
||||||
"@hono/swagger-ui": "^0.4.1",
|
"@hono/swagger-ui": "^0.5.0",
|
||||||
"@hono/zod-openapi": "^0.16.4",
|
"@hono/zod-openapi": "^0.16.4",
|
||||||
"@inquirer/confirm": "^5.0.2",
|
"@inquirer/confirm": "^5.0.2",
|
||||||
"@inquirer/input": "^4.0.2",
|
"@inquirer/input": "^4.0.2",
|
||||||
"@json2csv/plainjs": "^7.0.6",
|
"@json2csv/plainjs": "^7.0.6",
|
||||||
"@logtape/logtape": "npm:@jsr/logtape__logtape@0.8.0-dev.112+24252bf9",
|
"@logtape/logtape": "npm:@jsr/logtape__logtape@0.9.0-dev.114+327c9473",
|
||||||
"@oclif/core": "^4.0.33",
|
"@oclif/core": "^4.0.33",
|
||||||
"@sentry/bun": "^8.40.0",
|
"@sentry/bun": "^8.41.0",
|
||||||
"@tufjs/canonical-json": "^2.0.0",
|
"@tufjs/canonical-json": "^2.0.0",
|
||||||
"@versia/client": "^0.1.0",
|
"@versia/client": "^0.1.0",
|
||||||
"@versia/federation": "^0.1.4",
|
"@versia/federation": "^0.1.4",
|
||||||
|
|
@ -135,7 +135,7 @@
|
||||||
"confbox": "^0.1.8",
|
"confbox": "^0.1.8",
|
||||||
"drizzle-orm": "^0.36.4",
|
"drizzle-orm": "^0.36.4",
|
||||||
"extract-zip": "^2.0.1",
|
"extract-zip": "^2.0.1",
|
||||||
"hono": "npm:@jsr/hono__hono@4.6.11",
|
"hono": "npm:@jsr/hono__hono@4.6.12",
|
||||||
"html-to-text": "^9.0.5",
|
"html-to-text": "^9.0.5",
|
||||||
"ioredis": "^5.4.1",
|
"ioredis": "^5.4.1",
|
||||||
"ip-matching": "^2.1.2",
|
"ip-matching": "^2.1.2",
|
||||||
|
|
@ -150,7 +150,7 @@
|
||||||
"markdown-it-container": "^4.0.0",
|
"markdown-it-container": "^4.0.0",
|
||||||
"markdown-it-toc-done-right": "^4.2.0",
|
"markdown-it-toc-done-right": "^4.2.0",
|
||||||
"mime-types": "^2.1.35",
|
"mime-types": "^2.1.35",
|
||||||
"mitata": "^1.0.16",
|
"mitata": "^1.0.19",
|
||||||
"oauth4webapi": "^3.1.3",
|
"oauth4webapi": "^3.1.3",
|
||||||
"ora": "^8.1.1",
|
"ora": "^8.1.1",
|
||||||
"pg": "^8.13.1",
|
"pg": "^8.13.1",
|
||||||
|
|
|
||||||
|
|
@ -37,5 +37,6 @@ export const applyToHono = (app: OpenAPIHono<HonoEnv>): void => {
|
||||||
});
|
});
|
||||||
|
|
||||||
serverAdapter.setBasePath("/admin/queues");
|
serverAdapter.setBasePath("/admin/queues");
|
||||||
|
// @ts-expect-error idk why this is not working
|
||||||
app.route("/admin/queues", serverAdapter.registerPlugin());
|
app.route("/admin/queues", serverAdapter.registerPlugin());
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -216,7 +216,7 @@ export const configureLoggers = (silent = false): Promise<void> =>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
category: ["logtape", "meta"],
|
category: ["logtape", "meta"],
|
||||||
level: "error",
|
lowestLevel: "error",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
category: "plugin",
|
category: "plugin",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue