diff --git a/changelog.md b/changelog.md
index 276b8f6..10c96b0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## 2025-04-02 - 5.6.2 - fix(package.json)
+Fix formatting in package.json to correctly include the packageManager field
+
+- Added missing comma after the keywords array
+- Ensured proper inclusion of the packageManager field for consistency
+
 ## 2025-04-02 - 5.6.1 - fix(readme)
 Update README: Revamp structure for features, installation, and examples
 
diff --git a/package.json b/package.json
index 555d229..26753ab 100644
--- a/package.json
+++ b/package.json
@@ -87,5 +87,6 @@
     "UI components",
     "parallel testing",
     "test lifecycle management"
-  ]
+  ],
+  "packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
 }
diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts
index 3e7dc1c..2ae391e 100644
--- a/ts/00_commitinfo_data.ts
+++ b/ts/00_commitinfo_data.ts
@@ -3,6 +3,6 @@
  */
 export const commitinfo = {
   name: '@push.rocks/tapbundle',
-  version: '5.6.1',
+  version: '5.6.2',
   description: 'A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.'
 }