From 2836560d81e80bb10388252d155603590f24446f Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 24 Nov 2025 22:39:54 -0700 Subject: [PATCH] feat(dependencies): add lenis library for smooth scrolling - Included lenis version 1.3.15 in package.json and package-lock.json to enhance scrolling experience. - Updated dependency management files to reflect the addition of the new library. This commit integrates the lenis library, improving user interface interactions with smooth scrolling functionality. --- package-lock.json | 27 +++++++++++++++++++++++++++ package.json | 1 + 2 files changed, 28 insertions(+) diff --git a/package-lock.json b/package-lock.json index 13c701518..5818728aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,6 +56,7 @@ "geist": "^1.3.1", "ical.js": "^1.5.0", "input-otp": "latest", + "lenis": "^1.3.15", "lucide-react": "^0.454.0", "moment": "^2.30.1", "next": "^14.2.33", @@ -18380,6 +18381,32 @@ "node": ">=0.10" } }, + "node_modules/lenis": { + "version": "1.3.15", + "resolved": "https://registry.npmjs.org/lenis/-/lenis-1.3.15.tgz", + "integrity": "sha512-zSYOFs0ydafX70uygFoipaHHQouPeE4DpZZhdOUyLJxVf2ZVvBCBBaolDDaQztTRsa6+stBlxq2GmFGJPAVryQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/darkroomengineering" + }, + "peerDependencies": { + "@nuxt/kit": ">=3.0.0", + "react": ">=17.0.0", + "vue": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + }, + "react": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", diff --git a/package.json b/package.json index 7af5cc6e0..0148a40d9 100644 --- a/package.json +++ b/package.json @@ -96,6 +96,7 @@ "geist": "^1.3.1", "ical.js": "^1.5.0", "input-otp": "latest", + "lenis": "^1.3.15", "lucide-react": "^0.454.0", "moment": "^2.30.1", "next": "^14.2.33",