@md2do/todoist 0.2.0 → 0.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +4 -0
  3. package/package.json +12 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @md2do/todoist
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#12](https://github.com/TeamNickHart/md2do/pull/12) [`f07ba4c`](https://github.com/TeamNickHart/md2do/commit/f07ba4c4f6f46b43129e1ebd2b8ea67800e21dee) Thanks [@nickhart](https://github.com/nickhart)! - Enhance npm package discoverability with comprehensive READMEs and improved keywords
8
+ - Add conversion-focused README for @md2do/cli with Quick Start and common use cases
9
+ - Add developer-focused README for @md2do/core with complete API reference
10
+ - Add npm badges (version, downloads, license) to all package READMEs
11
+ - Expand keywords across all packages for better npm search discoverability
12
+ - Update root README tagline and add npm badges
13
+
14
+ - Updated dependencies [[`f07ba4c`](https://github.com/TeamNickHart/md2do/commit/f07ba4c4f6f46b43129e1ebd2b8ea67800e21dee)]:
15
+ - @md2do/core@0.2.2
16
+
3
17
  ## 0.2.0
4
18
 
5
19
  ### Minor Changes
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @md2do/todoist
2
2
 
3
+ [![npm version](https://badge.fury.io/js/%40md2do%2Ftodoist.svg)](https://www.npmjs.com/package/@md2do/todoist)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@md2do/todoist.svg)](https://www.npmjs.com/package/@md2do/todoist)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6
+
3
7
  Todoist API integration for md2do, providing bidirectional task synchronization between markdown files and Todoist.
4
8
 
5
9
  ## Features
package/package.json CHANGED
@@ -1,11 +1,20 @@
1
1
  {
2
2
  "name": "@md2do/todoist",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Todoist API integration for md2do",
5
5
  "keywords": [
6
6
  "todoist",
7
7
  "task-sync",
8
- "integration"
8
+ "integration",
9
+ "markdown",
10
+ "todo",
11
+ "task-management",
12
+ "sync",
13
+ "api-client",
14
+ "bidirectional-sync",
15
+ "productivity",
16
+ "task-integration",
17
+ "typescript"
9
18
  ],
10
19
  "homepage": "https://md2do.com",
11
20
  "bugs": "https://github.com/TeamNickHart/md2do/issues",
@@ -32,7 +41,7 @@
32
41
  "dependencies": {
33
42
  "@doist/todoist-api-typescript": "^3.0.3",
34
43
  "date-fns": "^3.0.6",
35
- "@md2do/core": "0.2.0"
44
+ "@md2do/core": "0.2.2"
36
45
  },
37
46
  "devDependencies": {
38
47
  "tsup": "^8.0.1"