@cayde-6/icalendar 0.1.0 → 0.1.2
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.
- package/README.md +13 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# icalendar
|
|
2
2
|
|
|
3
|
-
[](https://github.com/cayde-6/icalendar/actions/workflows/ci.yml)
|
|
4
3
|
[](https://github.com/cayde-6/icalendar/actions/workflows/release.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@cayde-6/icalendar)
|
|
5
|
+
[](https://github.com/cayde-6/icalendar/actions/workflows/ci.yml)
|
|
5
6
|
[](https://codecov.io/gh/cayde-6/icalendar)
|
|
6
7
|
|
|
7
8
|

|
|
8
9
|
|
|
9
10
|
Production-ready TypeScript CLI for **CalDAV calendars**, **iCalendar events**, and **agent-friendly automation**.
|
|
10
11
|
|
|
12
|
+
Published package: [`@cayde-6/icalendar`](https://www.npmjs.com/package/@cayde-6/icalendar)
|
|
13
|
+
|
|
11
14
|
`icalendar` gives agents and scripts a thin, reliable interface for:
|
|
12
15
|
- listing calendars
|
|
13
16
|
- listing events
|
|
@@ -26,6 +29,7 @@ Most CalDAV tooling is either too low-level for agents or too UI-centric for aut
|
|
|
26
29
|
## Features
|
|
27
30
|
|
|
28
31
|
- ESM TypeScript CLI with clean layering
|
|
32
|
+
- published npm package: `@cayde-6/icalendar`
|
|
29
33
|
- CalDAV access via `tsdav`
|
|
30
34
|
- invite-ready ICS generation
|
|
31
35
|
- attendee support for create/update flows
|
|
@@ -33,6 +37,7 @@ Most CalDAV tooling is either too low-level for agents or too UI-centric for aut
|
|
|
33
37
|
- text and JSON output modes
|
|
34
38
|
- runtime-safe handling of `--help` / `--version`
|
|
35
39
|
- live-tested against iCloud CalDAV
|
|
40
|
+
- GitHub Release + npm Trusted Publishing workflow
|
|
36
41
|
|
|
37
42
|
## Install
|
|
38
43
|
|
|
@@ -41,6 +46,7 @@ Most CalDAV tooling is either too low-level for agents or too UI-centric for aut
|
|
|
41
46
|
```bash
|
|
42
47
|
npm install -g @cayde-6/icalendar
|
|
43
48
|
icalendar --help
|
|
49
|
+
icalendar --version
|
|
44
50
|
```
|
|
45
51
|
|
|
46
52
|
### From source
|
|
@@ -216,6 +222,12 @@ The CalDAV SDK stays in `infra/`, use-cases orchestrate, domain stays provider-a
|
|
|
216
222
|
- attendee invites work in both create and update flows
|
|
217
223
|
- CLI defaults to the first calendar when `CALDAV_CALENDAR_NAME` is omitted
|
|
218
224
|
|
|
225
|
+
## Releases
|
|
226
|
+
|
|
227
|
+
- GitHub releases are created from pushed tags: `v*`
|
|
228
|
+
- npm publishing is wired through **npm Trusted Publishing** from GitHub Actions
|
|
229
|
+
- current public package name: `@cayde-6/icalendar`
|
|
230
|
+
|
|
219
231
|
## Repo docs
|
|
220
232
|
|
|
221
233
|
- [Agent integration guide](./docs/agent-integration.md)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cayde-6/icalendar",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Production-ready TypeScript CLI for CalDAV calendars, iCalendar events, and agent automation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"bin": {
|
|
10
|
-
"icalendar": "
|
|
10
|
+
"icalendar": "dist/cli.js"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|