@fineanmol/holiday-optimizer 1.0.1 → 1.0.3

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 +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,7 +18,7 @@ const result = optimize(params);
18
18
  console.log(formatReport(result, params));
19
19
  ```
20
20
 
21
- **Related:** [`@fineanmol/public-holidays`](https://www.npmjs.com/package/@fineanmol/public-holidays) — zero-dependency holiday lookups (`isHoliday`, `nextHoliday`, etc.) with the same regional data, usable without the optimizer.
21
+ **Related:** [`@fineanmol/public-holidays`](https://www.npmjs.com/package/@fineanmol/public-holidays) — standalone holiday lookups (`isHoliday`, `nextHoliday`, etc.) with the same regional data, usable on its own without the optimizer.
22
22
 
23
23
  ## What It Does
24
24
 
@@ -32,11 +32,11 @@ It finds the best schedule that maximizes your total days off by leveraging week
32
32
 
33
33
  ## Features
34
34
 
35
- - 🎯 **Dynamic Programming Algorithm** - Finds optimal vacation schedule
36
- - 🌍 **Multi-Country Support** - Pre-configured holidays for Germany and India (easily extensible)
37
- - ⚙️ **Customizable Constraints** - Set your own min/max break lengths and spacing
38
- - 📊 **Detailed Reports** - See exactly which dates to take off and how many days you'll get
39
- - 💻 **Zero Server Cost** - Runs entirely in the browser using GitHub Pages
35
+ - Dynamic programming to find the best possible schedule (not greedy, actually optimal)
36
+ - Germany and India holiday presets out of the box, easy to add more
37
+ - Control over min/max break length and minimum spacing between breaks
38
+ - Detailed output showing every date and how many total days off you get
39
+ - Runs fully in the browser no server needed
40
40
 
41
41
  ## How It Works
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fineanmol/holiday-optimizer",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Optimize vacation days using dynamic programming — maximize time off around weekends and public holidays.",
5
5
  "type": "module",
6
6
  "main": "./index.js",