├── .gitignore ├── README.md ├── data ├── 2024.json └── 2025.json ├── dist └── holidays.ics ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/README.md -------------------------------------------------------------------------------- /data/2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/data/2024.json -------------------------------------------------------------------------------- /data/2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/data/2025.json -------------------------------------------------------------------------------- /dist/holidays.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/dist/holidays.ics -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbf321/iCal/HEAD/yarn.lock --------------------------------------------------------------------------------