Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"@playfulprogramming/common": "workspace:*",
"@playfulprogramming/db": "workspace:*",
"@playfulprogramming/redis": "workspace:*",
"@scalar/fastify-api-reference": "^1.48.0",
"@scalar/fastify-api-reference": "^1.57.2",
"drizzle-orm": "catalog:",
"fastify": "^5.8.3",
"fastify": "^5.8.5",
"fastify-plugin": "^5.0.1",
"typebox": "catalog:"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"drizzle-orm": "catalog:",
"gray-matter": "catalog:",
"hast-util-from-html": "^2.0.3",
"lru-cache": "^11.2.2",
"lru-cache": "^11.5.0",
"mdast-util-to-string": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ export type TwitterApiMedia = {
media_info: TwitterApiImage | TwitterApiVideo;
};

export type TwitterApiImage = {
type TwitterApiImage = {
__typename: "ApiImage";
original_img_height: number;
original_img_width: number;
Expand All @@ -516,7 +516,7 @@ export type TwitterApiImage = {
};
};

export type TwitterApiVideo = {
type TwitterApiVideo = {
__typename: "ApiVideo" | "ApiGif";
type: "video" | "animated_gif";
id: string;
Expand Down Expand Up @@ -560,7 +560,7 @@ export type TwitterArticleContentState = {
entityMap: TwitterArticleEntityMapEntry[];
};

export type TwitterArticleContentBlock = {
type TwitterArticleContentBlock = {
key: string;
data: Record<string, unknown>;
entityRanges: Array<{
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@
},
"packageManager": "pnpm@11.4.0+sha512.f0febc7e37552ab485494a914241b338e0b3580b93d54ce31f00933015880863129038a1b4ae4e414a0ee63ac35bf21197e990172c4a68256450b5636310968f",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@nx/vite": "22.5.4",
"@nx/vitest": "22.4.5",
"@types/node": "^24.3.1",
"@eslint/js": "^10.0.1",
"@nx/vite": "22.7.2",
"@nx/vitest": "22.7.2",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "catalog:",
"eslint": "^9.38.0",
"globals": "^17.0.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.1.0",
"knip": "^5.80.2",
"lint-staged": "^16.2.0",
"nx": "22.5.4",
"prettier": "^3.7.4",
"publint": "^0.3.18",
"sherif": "^1.6.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.57.0",
"jsonc-eslint-parser": "^3.1.0",
"knip": "^6.14.1",
"lint-staged": "^17.0.5",
"nx": "22.7.2",
"prettier": "^3.8.3",
"publint": "^0.3.21",
"sherif": "^1.11.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "catalog:",
"vitest": "catalog:"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"dependencies": {
"@playfulprogramming/common": "workspace:*",
"drizzle-orm": "catalog:",
"pg": "^8.16.3"
"pg": "^8.21.0"
},
"devDependencies": {
"@types/pg": "^8.15.5",
"dotenv": "^17.3.1",
"@types/pg": "^8.20.0",
"dotenv": "^17.4.2",
"drizzle-kit": "catalog:"
}
}
4 changes: 2 additions & 2 deletions packages/post-images/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"dependencies": {
"@playfulprogramming/bullmq": "workspace:*",
"@resvg/resvg-js": "2.6.2",
"dayjs": "^1.11.18",
"dayjs": "^1.11.20",
"gray-matter": "catalog:",
"hast-util-to-string": "^3.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"satori": "^0.13.1",
"satori": "^0.26.0",
"sharp": "catalog:",
"typebox": "catalog:",
"unified": "^11.0.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"build": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1009.0",
"@aws-sdk/lib-storage": "^3.895.0",
"@aws-sdk/client-s3": "^3.1050.0",
"@aws-sdk/lib-storage": "^3.1050.0",
"@playfulprogramming/common": "workspace:*"
},
"devDependencies": {
"@aws-sdk/types": "^3.973.6"
"@aws-sdk/types": "^3.973.8"
}
}
Loading