@orkestrel/markdown 0.0.2 → 0.0.4

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.
@@ -14,7 +14,7 @@ import { ObjectShape, LiteralShape, StringShape, OptionalShape, BooleanShape, Nu
14
14
  export declare const textShape: ObjectShape<{
15
15
  element: LiteralShape<readonly ["text"]>;
16
16
  value: StringShape;
17
- }>;
17
+ }, false>;
18
18
  /**
19
19
  * The shape of a {@link CodeSpanNode} - an inline code span (`` `code` ``).
20
20
  *
@@ -30,7 +30,7 @@ export declare const textShape: ObjectShape<{
30
30
  export declare const codeSpanShape: ObjectShape<{
31
31
  element: LiteralShape<readonly ["codeSpan"]>;
32
32
  value: StringShape;
33
- }>;
33
+ }, false>;
34
34
  /**
35
35
  * The shape of a {@link CodeBlockNode} - a fenced code block. `lang` is
36
36
  * optional (absent when the opening fence carries no info-string).
@@ -49,7 +49,7 @@ export declare const codeBlockShape: ObjectShape<{
49
49
  element: LiteralShape<readonly ["codeBlock"]>;
50
50
  lang: OptionalShape<StringShape>;
51
51
  code: StringShape;
52
- }>;
52
+ }, false>;
53
53
  /**
54
54
  * The shape of a {@link ThematicBreakNode} - a horizontal rule. Carries no
55
55
  * fields beyond its `element` discriminant.
@@ -65,7 +65,7 @@ export declare const codeBlockShape: ObjectShape<{
65
65
  */
66
66
  export declare const thematicBreakShape: ObjectShape<{
67
67
  element: LiteralShape<readonly ["thematicBreak"]>;
68
- }>;
68
+ }, false>;
69
69
  /**
70
70
  * The shape of a {@link TableAlign} - the per-column GFM table alignment
71
71
  * literal.
@@ -102,4 +102,4 @@ export declare const listItemPartsShape: ObjectShape<{
102
102
  content: StringShape;
103
103
  indent: NumberShape;
104
104
  marker: NumberShape;
105
- }>;
105
+ }, false>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/markdown",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Markdown parser toolkit — a fast, zero-surprise CommonMark-style parser with GFM tables, a typed AST, contract-backed node guards, and safe HTML rendering. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "ast",
@@ -65,10 +65,10 @@
65
65
  "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
66
66
  },
67
67
  "dependencies": {
68
- "@orkestrel/contract": "^0.0.2"
68
+ "@orkestrel/contract": "^0.0.4"
69
69
  },
70
70
  "devDependencies": {
71
- "@orkestrel/guide": "^0.0.1",
71
+ "@orkestrel/guide": "^0.0.3",
72
72
  "@types/node": "^26.1.1",
73
73
  "oxfmt": "^0.59.0",
74
74
  "oxlint": "^1.74.0",