mduck 2.0.4 → 2.0.5
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/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mduck",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "A CLI tool to convert Markdown files into HTML and PDF documents using Tailwind CSS v4 for styling.",
|
|
5
5
|
"files": [
|
|
6
6
|
"bin/",
|
|
@@ -29,16 +29,17 @@
|
|
|
29
29
|
"build": "bun run build.ts",
|
|
30
30
|
"publish-all": "bun run publish.ts",
|
|
31
31
|
"publish-all:dry": "bun run publish.ts --dry-run",
|
|
32
|
+
"version:bump": "bun run version.ts",
|
|
32
33
|
"prepack": "bun run build",
|
|
33
34
|
"dev": "bun --watch run ./src/index.ts convert test/input/test.md test/output/"
|
|
34
35
|
},
|
|
35
36
|
"type": "module",
|
|
36
37
|
"optionalDependencies": {
|
|
37
|
-
"@simplyhexagonal/mduck-darwin-arm64": "2.0.
|
|
38
|
-
"@simplyhexagonal/mduck-darwin-x64": "2.0.
|
|
39
|
-
"@simplyhexagonal/mduck-linux-arm64": "2.0.
|
|
40
|
-
"@simplyhexagonal/mduck-linux-x64": "2.0.
|
|
41
|
-
"@simplyhexagonal/mduck-win32-x64": "2.0.
|
|
38
|
+
"@simplyhexagonal/mduck-darwin-arm64": "2.0.5",
|
|
39
|
+
"@simplyhexagonal/mduck-darwin-x64": "2.0.5",
|
|
40
|
+
"@simplyhexagonal/mduck-linux-arm64": "2.0.5",
|
|
41
|
+
"@simplyhexagonal/mduck-linux-x64": "2.0.5",
|
|
42
|
+
"@simplyhexagonal/mduck-win32-x64": "2.0.5"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@tailwindcss/typography": "^0.5.19",
|