@qzoft/check-list 1.0.1 → 1.0.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 +2 -5
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -18,10 +18,7 @@ Add the following to your project's `.vscode/mcp.json`:
|
|
|
18
18
|
"servers": {
|
|
19
19
|
"check-list": {
|
|
20
20
|
"command": "npx",
|
|
21
|
-
"args": ["-y", "@qzoft/check-list"]
|
|
22
|
-
"env": {
|
|
23
|
-
"PROJECT_DIR": "${workspaceFolder}"
|
|
24
|
-
}
|
|
21
|
+
"args": ["-y", "@qzoft/check-list"]
|
|
25
22
|
}
|
|
26
23
|
}
|
|
27
24
|
}
|
|
@@ -84,7 +81,7 @@ The parser recognizes `## Section` headers and checkbox list items in any `.md`
|
|
|
84
81
|
- [ ] Update README
|
|
85
82
|
|
|
86
83
|
## This Week
|
|
87
|
-
- [
|
|
84
|
+
- [x] Review PRs
|
|
88
85
|
- [ ] Deploy to staging
|
|
89
86
|
```
|
|
90
87
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qzoft/check-list",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP App for interactive task management from markdown files",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server.js",
|
|
7
|
-
"bin":
|
|
7
|
+
"bin": {
|
|
8
|
+
"check-list": "dist/server.js"
|
|
9
|
+
},
|
|
8
10
|
"files": [
|
|
9
11
|
"dist",
|
|
10
12
|
"ui"
|