chronos-date 2.0.1 → 2.0.4

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.
Files changed (2) hide show
  1. package/README.md +14 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -60,7 +60,7 @@ Designed to go beyond the native `Date` object, it empowers you to manipulate, f
60
60
  - **Plugin System:** Extend core capabilities seamlessly using `Chronos.use(plugin)`. Over a dozen official plugins exist for advanced operations like business hours, seasons, zodiacs, relative times, and more.
61
61
  - **Time Zone Support:** Advanced formatting and tracking of UTC offsets and Native time zone properties.
62
62
  - **Date Utilities:** Extra utilities, type guards, types and constants for light weight date operations without the need of core class.
63
- - **Comprehensive TypeScript IntelliSense:** Built with first-class TypeScript types and granular tracking for strict date formatting tokens.
63
+ - **TypeScript IntelliSense:** Built with first-class TypeScript types and TSDoc documentation for better IDE support and autocompletion.
64
64
  - **Cross-environment compatibility:** Works anywhere JS runs (Node.js, Browser, Deno, Bun).
65
65
 
66
66
  ---
@@ -131,9 +131,15 @@ For full documentation, API reference, and interactive playgrounds, visit the [*
131
131
 
132
132
  ## 🔗 Related Packages
133
133
 
134
+ <div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
135
+ <a target="_blank" href="https://www.npmjs.com/package/toolbox-x">
136
+ <img src="https://img.shields.io/badge/Toolbox--X-toolbox--x-steelblue" alt="toolbox-x" />
137
+ </a>
138
+ </div>
139
+
134
140
  <div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
135
141
  <a target="_blank" href="https://www.npmjs.com/package/nhb-toolbox">
136
- <img src="https://img.shields.io/badge/NHB_Toolbox-nhb--toolbox-steelblue" alt="nhb-toolbox" />
142
+ <img src="https://img.shields.io/badge/NHB_Toolbox-nhb--toolbox-darkred" alt="nhb-toolbox" />
137
143
  </a>
138
144
  </div>
139
145
 
@@ -177,7 +183,12 @@ For full documentation, API reference, and interactive playgrounds, visit the [*
177
183
 
178
184
  ## License
179
185
 
180
- This project is licensed under the [Apache License 2.0](LICENSE).
186
+ This project is licensed under the [Apache License 2.0](LICENSE) with the following additional requirement:
187
+
188
+ **Additional Requirement:**
189
+
190
+ > Any fork, derivative work, or redistribution of this project must include clear attribution to [**Nazmul Hassan**](https://github.com/nazmul-nhb) in both the source code and any publicly available documentation.
191
+
181
192
  You are free to use, modify, and distribute this project under the terms of the Apache 2.0 License, provided that appropriate credit is given.
182
193
 
183
194
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chronos-date",
3
- "version": "2.0.1",
3
+ "version": "2.0.4",
4
4
  "description": "A lightweight, immutable, and plugin-based date-time manipulation library for JavaScript and TypeScript.",
5
5
  "main": "./dist/index.cjs",
6
6
  "type": "module",