brep-io-kernel 1.0.26 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -149,6 +149,14 @@ Notes:
149
149
  - `const { BREP } = await import('brep-io-kernel');`
150
150
  - Top-level await is used internally; target modern runtimes (Node 18+ or modern bundlers).
151
151
 
152
+ License helpers (package-only vs full dependency summary):
153
+ ```js
154
+ import { getPackageLicenseInfoString, getAllLicensesInfoString } from 'brep-io-kernel';
155
+
156
+ console.log(getPackageLicenseInfoString()); // this package only
157
+ console.log(getAllLicensesInfoString()); // includes prod dependency summary
158
+ ```
159
+
152
160
 
153
161
 
154
162