@bobfrankston/gcal 0.1.13 → 0.1.15

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/gcal.ts +1 -1
  2. package/package.json +3 -3
package/gcal.ts CHANGED
@@ -298,7 +298,7 @@ function parseArgs(argv: string[]): ParsedArgs {
298
298
  help: false,
299
299
  verbose: false,
300
300
  icsFile: '',
301
- reminder: -1
301
+ reminder: 60
302
302
  };
303
303
 
304
304
  const unknown: string[] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/gcal",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Google Calendar CLI tool with ICS import support",
5
5
  "type": "module",
6
6
  "main": "gcal.ts",
@@ -37,10 +37,10 @@
37
37
  "author": "Bob Frankston",
38
38
  "license": "MIT",
39
39
  "devDependencies": {
40
- "@types/node": "^25.0.9"
40
+ "@types/node": "^25.2.1"
41
41
  },
42
42
  "dependencies": {
43
- "@bobfrankston/oauthsupport": "^1.0.5",
43
+ "@bobfrankston/oauthsupport": "^1.0.7",
44
44
  "ical.js": "^2.1.0"
45
45
  },
46
46
  "publishConfig": {