Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [14.0.2](https://github.com/brmorillo/util/compare/v14.0.1...v14.0.2) (2026-06-17)

## [14.0.1](https://github.com/brmorillo/util/compare/v12.0.0...v14.0.1) (2026-06-17)


Expand Down
28 changes: 25 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
{
"name": "@brmorillo/utils",
"version": "14.0.1",
"description": "Utility library for JavaScript/TypeScript projects",
"version": "14.0.2",
"description": "Production-ready utility library for JS/TS — 27 modules behind one type-safe API: arrays, objects, strings, crypto, JWT, UUID, sorting, queues, caches, HTTP, logging, storage and more.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
Expand Down Expand Up @@ -44,7 +52,21 @@
"utils",
"utilities",
"helpers",
"typescript"
"typescript",
"javascript",
"nodejs",
"type-safe",
"cryptography",
"jwt",
"uuid",
"sorting",
"queue",
"cache",
"http",
"logging",
"storage",
"esm",
"commonjs"
],
"author": "Bruno Morillo",
"license": "LGPL-3.0-only",
Expand Down
Loading