Skip to content

Commit feb0ec4

Browse files
committed
build: update dependencies
1 parent 4adb465 commit feb0ec4

File tree

13 files changed

+109
-69
lines changed

13 files changed

+109
-69
lines changed

apps/browser/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"root": false,
3-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
3+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
44
"extends": "//",
55
"files": {
66
"includes": ["**", "!!build", "!src/components/ui", "!!.plasmo"]

apps/browser/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
"check:types": "tsc -noEmit"
1313
},
1414
"dependencies": {
15-
"@clerk/chrome-extension": "^2.7.8",
15+
"@clerk/chrome-extension": "^2.7.10",
1616
"convex": "^1.28.0",
1717
"plasmo": "0.90.5",
1818
"react": "19.2.0",
1919
"react-dom": "19.2.0",
2020
"tailwindcss": "3.4.1"
2121
},
2222
"devDependencies": {
23-
"@biomejs/biome": "2.3.0",
24-
"@types/chrome": "0.1.24",
25-
"@types/node": "^24.9.1",
23+
"@biomejs/biome": "2.3.2",
24+
"@types/chrome": "^0.1.27",
25+
"@types/node": "^24.9.2",
2626
"@types/react": "19.2.2",
2727
"@types/react-dom": "19.2.2",
2828
"postcss": "8.5.6",

apps/scraper/biome.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"root": false,
3-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
3+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
44
"extends": "//",
55
"files": {
6-
"includes": ["**", "!worker-configuration.d.ts", "!__mocks__"]
6+
"includes": ["**", "!worker-configuration.d.ts", "!**/__mocks__"]
77
}
88
}

apps/scraper/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@
2121
"@albert-plus/server": "workspace:*",
2222
"dotenv": "^17.2.3",
2323
"drizzle-orm": "^0.44.7",
24-
"hono": "^4.10.3",
24+
"hono": "^4.10.4",
2525
"nanoid": "^5.1.6",
2626
"zod": "^4.1.12"
2727
},
2828
"devDependencies": {
29-
"@biomejs/biome": "2.3.0",
29+
"@biomejs/biome": "2.3.2",
3030
"@libsql/client": "^0.15.15",
31+
"@types/node": "^24.9.2",
3132
"convex": "^1.28.0",
32-
"drizzle-kit": "^0.31.5",
33-
"wrangler": "^4.45.0"
33+
"drizzle-kit": "^0.31.6",
34+
"wrangler": "^4.45.3"
3435
}
3536
}

apps/scraper/worker-configuration.d.ts

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types --env-interface CloudflareBindings` (hash: cf52d2ec3d4f3dbc449f43264447eec3)
3-
// Runtime types generated with workerd@1.20251008.0 2025-09-26 nodejs_compat
3+
// Runtime types generated with workerd@1.20251011.0 2025-09-26 nodejs_compat
44
declare namespace Cloudflare {
55
interface GlobalProps {
66
mainModule: typeof import("./src/index");
@@ -6052,13 +6052,6 @@ type AiOptions = {
60526052
prefix?: string;
60536053
extraHeaders?: object;
60546054
};
6055-
type ConversionResponse = {
6056-
name: string;
6057-
mimeType: string;
6058-
format: "markdown";
6059-
tokens: number;
6060-
data: string;
6061-
};
60626055
type AiModelsSearchParams = {
60636056
author?: string;
60646057
hide_experimental?: boolean;
@@ -6101,6 +6094,7 @@ declare abstract class Ai<AiModelList extends AiModelListType = AiModels> {
61016094
stream: true;
61026095
} ? ReadableStream : AiModelList[Name]["postProcessedOutputs"]>;
61036096
models(params?: AiModelsSearchParams): Promise<AiModelsSearchObject[]>;
6097+
toMarkdown(): ToMarkdownService;
61046098
toMarkdown(files: {
61056099
name: string;
61066100
blob: Blob;
@@ -7838,6 +7832,38 @@ declare module "cloudflare:sockets" {
78387832
function _connect(address: string | SocketAddress, options?: SocketOptions): Socket;
78397833
export { _connect as connect };
78407834
}
7835+
type ConversionResponse = {
7836+
name: string;
7837+
mimeType: string;
7838+
} & ({
7839+
format: "markdown";
7840+
tokens: number;
7841+
data: string;
7842+
} | {
7843+
format: "error";
7844+
error: string;
7845+
});
7846+
type SupportedFileFormat = {
7847+
mimeType: string;
7848+
extension: string;
7849+
};
7850+
declare abstract class ToMarkdownService {
7851+
transform(files: {
7852+
name: string;
7853+
blob: Blob;
7854+
}[], options?: {
7855+
gateway?: GatewayOptions;
7856+
extraHeaders?: object;
7857+
}): Promise<ConversionResponse[]>;
7858+
transform(files: {
7859+
name: string;
7860+
blob: Blob;
7861+
}, options?: {
7862+
gateway?: GatewayOptions;
7863+
extraHeaders?: object;
7864+
}): Promise<ConversionResponse>;
7865+
supported(): Promise<SupportedFileFormat[]>;
7866+
}
78417867
declare namespace TailStream {
78427868
interface Header {
78437869
readonly name: string;

apps/web/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"root": false,
3-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
3+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
44
"extends": "//",
55
"files": {
66
"includes": [

apps/web/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"packageManager": "[email protected]",
1414
"dependencies": {
1515
"@albert-plus/server": "workspace:*",
16-
"@clerk/nextjs": "^6.34.0",
16+
"@clerk/nextjs": "^6.34.1",
1717
"@radix-ui/react-avatar": "^1.1.10",
1818
"@radix-ui/react-dialog": "^1.1.15",
1919
"@radix-ui/react-dropdown-menu": "^2.1.16",
2020
"@radix-ui/react-label": "^2.1.7",
2121
"@radix-ui/react-separator": "^1.1.7",
2222
"@radix-ui/react-slot": "^1.2.3",
2323
"@radix-ui/react-tooltip": "^1.2.8",
24-
"@remixicon/react": "^4.6.0",
24+
"@remixicon/react": "^4.7.0",
2525
"@t3-oss/env-nextjs": "^0.13.8",
2626
"@tanstack/react-form": "^1.23.8",
2727
"@tanstack/react-table": "^8.21.3",
@@ -36,16 +36,16 @@
3636
"pdfjs-dist": "^5.4.296",
3737
"radix-ui": "^1.4.3",
3838
"react": "^19.2.0",
39-
"react-day-picker": "^9.11.0",
39+
"react-day-picker": "^9.11.1",
4040
"react-dom": "^19.2.0",
4141
"sonner": "^2.0.7",
4242
"tailwind-merge": "^3.3.1",
4343
"zod": "^4.1.12"
4444
},
4545
"devDependencies": {
46-
"@biomejs/biome": "2.3.0",
46+
"@biomejs/biome": "2.3.2",
4747
"@tailwindcss/postcss": "^4.1.16",
48-
"@types/node": "^20.19.23",
48+
"@types/node": "^20.19.24",
4949
"@types/react": "^19.2.2",
5050
"@types/react-dom": "^19.2.2",
5151
"tailwindcss": "^4.1.16",

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

0 commit comments

Comments
 (0)