From eb521f24e2ea51404e8e8380b4b7edfb5c286bc3 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 5 Mar 2026 13:20:48 +0000 Subject: [PATCH] Add Cloudinary integration to optimize and manage images Add the Cloudinary SDK to the project dependencies to enable image optimization and management. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 1f7e7e89-a520-4970-9645-37daadc466dc Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 065d3055-5e8a-4fe7-8ea7-a3c758966d5b Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/1f7e7e89-a520-4970-9645-37daadc466dc/tSWS0WO Replit-Helium-Checkpoint-Created: true --- package-lock.json | 13 +++++++++++++ package.json | 1 + 2 files changed, 14 insertions(+) diff --git a/package-lock.json b/package-lock.json index 3d1b10f..59280dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,6 +43,7 @@ "@types/dompurify": "^3.0.5", "@types/multer": "^2.0.0", "class-variance-authority": "^0.7.1", + "cloudinary": "^2.9.0", "clsx": "^2.1.1", "cmdk": "^1.1.1", "connect-pg-simple": "^10.0.0", @@ -4200,6 +4201,18 @@ "url": "https://polar.sh/cva" } }, + "node_modules/cloudinary": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cloudinary/-/cloudinary-2.9.0.tgz", + "integrity": "sha512-F3iKMOy4y0zy0bi5JBp94SC7HY7i/ImfTPSUV07iJmRzH1Iz8WavFfOlJTR1zvYM/xKGoiGZ3my/zy64In0IQQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=9" + } + }, "node_modules/clsx": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", diff --git a/package.json b/package.json index 8edd1d6..93d0b79 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "@types/dompurify": "^3.0.5", "@types/multer": "^2.0.0", "class-variance-authority": "^0.7.1", + "cloudinary": "^2.9.0", "clsx": "^2.1.1", "cmdk": "^1.1.1", "connect-pg-simple": "^10.0.0",