calendaryjs-plugin-ics 0.1.0 → 0.1.1

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 +4 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # calendaryjs-plugin-ics
2
2
 
3
- ICS (RFC 5545) export for [calendaryjs](https://github.com/calendaryjs/calendaryjs). Turn generated calendar occurrences into a standard `.ics` `VCALENDAR` that Apple Calendar, Google Calendar, Outlook and anything else can subscribe to.
3
+ ICS (RFC 5545) export for [calendaryjs](https://www.npmjs.com/package/calendaryjs). Turn generated calendar occurrences into a standard `.ics` `VCALENDAR` that Apple Calendar, Google Calendar, Outlook and anything else can subscribe to.
4
4
 
5
5
  It is an **edge integration**: calendaryjs owns the calendar core; this package only serializes its plain output. It adds **zero runtime dependency** to the core and works on any plain object shaped like a `CalendarEvent`.
6
6
 
@@ -95,9 +95,9 @@ Also exported: `veventLines` (unfolded lines), `defaultPriorityMap`, and the low
95
95
 
96
96
  ## Related Packages
97
97
 
98
- - [calendaryjs](https://github.com/calendaryjs/calendaryjs/tree/main/packages/calendaryjs) — core engine
99
- - [calendaryjs-plugin-lunar](https://github.com/calendaryjs/calendaryjs/tree/main/packages/lunar) — lunar calendar
100
- - [calendaryjs-plugin-liturgical](https://github.com/calendaryjs/calendaryjs/tree/main/packages/liturgical) — liturgical calendar
98
+ - [calendaryjs](https://www.npmjs.com/package/calendaryjs) — core engine
99
+ - [calendaryjs-plugin-lunar](https://www.npmjs.com/package/calendaryjs-plugin-lunar) — lunar calendar
100
+ - [calendaryjs-plugin-liturgical](https://www.npmjs.com/package/calendaryjs-plugin-liturgical) — liturgical calendar
101
101
 
102
102
  ## License
103
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "calendaryjs-plugin-ics",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "ICS (RFC 5545) export for calendaryjs — serialize generated calendar occurrences to a standard .ics VCALENDAR (VEVENT, VALARM reminders, PRIORITY, CATEGORIES, COLOR/IMAGE). The edge integration: calendaryjs owns the core, ICS rides at the boundary.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -39,7 +39,7 @@
39
39
  "devDependencies": {
40
40
  "typescript": "^5.3.2",
41
41
  "vitest": "^4.0.18",
42
- "calendaryjs": "0.2.0"
42
+ "calendaryjs": "0.2.1"
43
43
  },
44
44
  "files": [
45
45
  "dist"
@@ -58,12 +58,12 @@
58
58
  },
59
59
  "repository": {
60
60
  "type": "git",
61
- "url": "git+https://github.com/calendaryjs/calendaryjs.git",
61
+ "url": "git+https://github.com/vbilltran68/calendaryjs.git",
62
62
  "directory": "packages/ics"
63
63
  },
64
- "homepage": "https://github.com/calendaryjs/calendaryjs/tree/main/packages/ics#readme",
64
+ "homepage": "https://www.npmjs.com/package/calendaryjs-plugin-ics",
65
65
  "bugs": {
66
- "url": "https://github.com/calendaryjs/calendaryjs/issues"
66
+ "url": "https://github.com/vbilltran68/calendaryjs/issues"
67
67
  },
68
68
  "scripts": {
69
69
  "typecheck": "tsc --noEmit",