From 0ac50d647d9251b1d1da21c7d21847f3864c16be Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 3 Apr 2025 21:46:40 +0000 Subject: [PATCH] fix(package.json): Add explicit packageManager field to package.json --- changelog.md | 6 ++++++ package.json | 3 ++- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 389a92f..2423a28 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-04-03 - 0.5.3 - fix(package.json) +Add explicit packageManager field to package.json + +- Include the packageManager property to specify the pnpm version and checksum. +- Align package metadata with current standards. + ## 2025-04-03 - 0.5.2 - fix(readme) Remove redundant conclusion section from README to streamline documentation. diff --git a/package.json b/package.json index 65c0af5..1f3707b 100644 --- a/package.json +++ b/package.json @@ -84,5 +84,6 @@ "onlyBuiltDependencies": [ "puppeteer" ] - } + }, + "packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6" } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index d184545..47cf3a9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartai', - version: '0.5.2', + version: '0.5.3', description: 'SmartAi is a versatile TypeScript library designed to facilitate integration and interaction with various AI models, offering functionalities for chat, audio generation, document processing, and vision tasks.' }