markdown-codec 6.4.1 → 6.4.3
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/dist/codec.d.cts +3 -0
- package/dist/codec.d.ts +3 -0
- package/package.json +18 -18
package/dist/codec.d.cts
CHANGED
|
@@ -1908,6 +1908,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1908
1908
|
thisWeek: "thisWeek";
|
|
1909
1909
|
lastWeek: "lastWeek";
|
|
1910
1910
|
nextWeek: "nextWeek";
|
|
1911
|
+
thisYear: "thisYear";
|
|
1912
|
+
lastYear: "lastYear";
|
|
1913
|
+
nextYear: "nextYear";
|
|
1911
1914
|
}>;
|
|
1912
1915
|
style: z.ZodOptional<z.ZodObject<{
|
|
1913
1916
|
textColor: z.ZodOptional<z.ZodObject<{
|
package/dist/codec.d.ts
CHANGED
|
@@ -1908,6 +1908,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1908
1908
|
thisWeek: "thisWeek";
|
|
1909
1909
|
lastWeek: "lastWeek";
|
|
1910
1910
|
nextWeek: "nextWeek";
|
|
1911
|
+
thisYear: "thisYear";
|
|
1912
|
+
lastYear: "lastYear";
|
|
1913
|
+
nextYear: "nextYear";
|
|
1911
1914
|
}>;
|
|
1912
1915
|
style: z.ZodOptional<z.ZodObject<{
|
|
1913
1916
|
textColor: z.ZodOptional<z.ZodObject<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.3",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> DocumentTree codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -83,25 +83,25 @@
|
|
|
83
83
|
"license": "MIT",
|
|
84
84
|
"packageManager": "pnpm@11.6.0",
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"document-schema.js": "
|
|
87
|
-
"zod": "
|
|
86
|
+
"document-schema.js": "7.3.1",
|
|
87
|
+
"zod": "4.4.3"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@arethetypeswrong/cli": "
|
|
91
|
-
"@cloudflare/vitest-pool-workers": "
|
|
92
|
-
"@stryker-mutator/core": "
|
|
93
|
-
"@stryker-mutator/typescript-checker": "
|
|
94
|
-
"@stryker-mutator/vitest-runner": "
|
|
95
|
-
"@types/node": "
|
|
96
|
-
"@vitest/coverage-v8": "
|
|
97
|
-
"eslint": "
|
|
98
|
-
"husky": "
|
|
90
|
+
"@arethetypeswrong/cli": "0.18.5",
|
|
91
|
+
"@cloudflare/vitest-pool-workers": "0.21.2",
|
|
92
|
+
"@stryker-mutator/core": "10.0.0",
|
|
93
|
+
"@stryker-mutator/typescript-checker": "10.0.0",
|
|
94
|
+
"@stryker-mutator/vitest-runner": "10.0.0",
|
|
95
|
+
"@types/node": "26.2.0",
|
|
96
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
97
|
+
"eslint": "10.8.1",
|
|
98
|
+
"husky": "9.1.7",
|
|
99
99
|
"jiti": "2.7.0",
|
|
100
|
-
"publint": "
|
|
101
|
-
"semantic-release": "
|
|
102
|
-
"tsdown": "
|
|
103
|
-
"turbo": "
|
|
104
|
-
"typescript": "
|
|
105
|
-
"vitest": "
|
|
100
|
+
"publint": "0.3.22",
|
|
101
|
+
"semantic-release": "25.0.9",
|
|
102
|
+
"tsdown": "0.22.14",
|
|
103
|
+
"turbo": "2.10.8",
|
|
104
|
+
"typescript": "6.0.3",
|
|
105
|
+
"vitest": "4.1.11"
|
|
106
106
|
}
|
|
107
107
|
}
|