@savvy-web/silk 0.5.0 → 1.0.0

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.
@@ -8501,7 +8501,7 @@ interface TokenTypeMap {
8501
8501
  chunkText: 'chunkText';
8502
8502
  chunkString: 'chunkString';
8503
8503
  } //#endregion
8504
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/markdownlint.d.mts
8504
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
8505
8505
  /**
8506
8506
  * Function to implement rule logic.
8507
8507
  */
@@ -8567,13 +8567,13 @@ type ParserMicromark = {
8567
8567
  tokens: MicromarkToken[];
8568
8568
  };
8569
8569
  /**
8570
- * markdown-it token.
8570
+ * markdown-it base token.
8571
8571
  */
8572
- type MarkdownItToken = {
8572
+ type MarkdownItBaseToken = {
8573
8573
  /**
8574
8574
  * HTML attributes.
8575
8575
  */
8576
- attrs: string[][];
8576
+ attrs: string[][] | null;
8577
8577
  /**
8578
8578
  * Block-level token.
8579
8579
  */
@@ -8581,7 +8581,7 @@ type MarkdownItToken = {
8581
8581
  /**
8582
8582
  * Child nodes.
8583
8583
  */
8584
- children: MarkdownItToken[];
8584
+ children: MarkdownItBaseToken[] | null;
8585
8585
  /**
8586
8586
  * Tag contents.
8587
8587
  */
@@ -8601,7 +8601,7 @@ type MarkdownItToken = {
8601
8601
  /**
8602
8602
  * Beginning/ending line numbers.
8603
8603
  */
8604
- map: number[];
8604
+ map: number[] | null;
8605
8605
  /**
8606
8606
  * Markup text.
8607
8607
  */
@@ -8609,7 +8609,7 @@ type MarkdownItToken = {
8609
8609
  /**
8610
8610
  * Arbitrary data.
8611
8611
  */
8612
- meta: any;
8612
+ meta: Object;
8613
8613
  /**
8614
8614
  * Level change.
8615
8615
  */
@@ -8622,6 +8622,15 @@ type MarkdownItToken = {
8622
8622
  * Token type.
8623
8623
  */
8624
8624
  type: string;
8625
+ };
8626
+ /**
8627
+ * markdown-it extended token.
8628
+ */
8629
+ type MarkdownItExtendedToken = {
8630
+ /**
8631
+ * Child nodes.
8632
+ */
8633
+ children: MarkdownItExtendedToken[] | null;
8625
8634
  /**
8626
8635
  * Line number (1-based).
8627
8636
  */
@@ -8631,6 +8640,10 @@ type MarkdownItToken = {
8631
8640
  */
8632
8641
  line: string;
8633
8642
  };
8643
+ /**
8644
+ * markdown-it token.
8645
+ */
8646
+ type MarkdownItToken = MarkdownItBaseToken & MarkdownItExtendedToken;
8634
8647
  type MicromarkTokenType = TokenType;
8635
8648
  /**
8636
8649
  * micromark token.
@@ -8684,23 +8697,23 @@ type RuleOnErrorInfo = {
8684
8697
  /**
8685
8698
  * Detail about the error.
8686
8699
  */
8687
- detail?: string;
8700
+ detail?: string | undefined;
8688
8701
  /**
8689
8702
  * Context for the error.
8690
8703
  */
8691
- context?: string;
8704
+ context?: string | undefined;
8692
8705
  /**
8693
8706
  * Link to more information.
8694
8707
  */
8695
- information?: URL;
8708
+ information?: URL | undefined;
8696
8709
  /**
8697
8710
  * Column number (1-based) and length.
8698
8711
  */
8699
- range?: number[];
8712
+ range?: number[] | undefined;
8700
8713
  /**
8701
8714
  * Fix information.
8702
8715
  */
8703
- fixInfo?: RuleOnErrorFixInfo;
8716
+ fixInfo?: RuleOnErrorFixInfo | undefined;
8704
8717
  };
8705
8718
  /**
8706
8719
  * Fix information for RuleOnErrorInfo.
@@ -8709,19 +8722,19 @@ type RuleOnErrorFixInfo = {
8709
8722
  /**
8710
8723
  * Line number (1-based).
8711
8724
  */
8712
- lineNumber?: number;
8725
+ lineNumber?: number | undefined;
8713
8726
  /**
8714
8727
  * Column of the fix (1-based).
8715
8728
  */
8716
- editColumn?: number;
8729
+ editColumn?: number | undefined;
8717
8730
  /**
8718
8731
  * Count of characters to delete.
8719
8732
  */
8720
- deleteCount?: number;
8733
+ deleteCount?: number | undefined;
8721
8734
  /**
8722
8735
  * Text to insert (after deleting).
8723
8736
  */
8724
- insertText?: string;
8737
+ insertText?: string | undefined;
8725
8738
  };
8726
8739
  /**
8727
8740
  * Rule definition.
@@ -8738,7 +8751,7 @@ type Rule$2 = {
8738
8751
  /**
8739
8752
  * Link to more information.
8740
8753
  */
8741
- information?: URL;
8754
+ information?: URL | undefined;
8742
8755
  /**
8743
8756
  * Rule tag(s).
8744
8757
  */
@@ -8750,7 +8763,7 @@ type Rule$2 = {
8750
8763
  /**
8751
8764
  * True if asynchronous.
8752
8765
  */
8753
- asynchronous?: boolean;
8766
+ asynchronous?: boolean | undefined;
8754
8767
  /**
8755
8768
  * Rule implementation.
8756
8769
  */
@@ -8760,7 +8773,7 @@ type Rule$2 = {
8760
8773
  * Rule configuration.
8761
8774
  */
8762
8775
  type RuleConfiguration = boolean | any; //#endregion
8763
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/exports.d.mts
8776
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
8764
8777
  type Rule$1 = Rule$2; //#endregion
8765
8778
  //#region src/changesets/markdownlint/rules/content-structure.d.ts
8766
8779
  /**
@@ -8501,7 +8501,7 @@ interface TokenTypeMap {
8501
8501
  chunkText: 'chunkText';
8502
8502
  chunkString: 'chunkString';
8503
8503
  } //#endregion
8504
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/markdownlint.d.mts
8504
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
8505
8505
  /**
8506
8506
  * Function to implement rule logic.
8507
8507
  */
@@ -8567,13 +8567,13 @@ type ParserMicromark = {
8567
8567
  tokens: MicromarkToken[];
8568
8568
  };
8569
8569
  /**
8570
- * markdown-it token.
8570
+ * markdown-it base token.
8571
8571
  */
8572
- type MarkdownItToken = {
8572
+ type MarkdownItBaseToken = {
8573
8573
  /**
8574
8574
  * HTML attributes.
8575
8575
  */
8576
- attrs: string[][];
8576
+ attrs: string[][] | null;
8577
8577
  /**
8578
8578
  * Block-level token.
8579
8579
  */
@@ -8581,7 +8581,7 @@ type MarkdownItToken = {
8581
8581
  /**
8582
8582
  * Child nodes.
8583
8583
  */
8584
- children: MarkdownItToken[];
8584
+ children: MarkdownItBaseToken[] | null;
8585
8585
  /**
8586
8586
  * Tag contents.
8587
8587
  */
@@ -8601,7 +8601,7 @@ type MarkdownItToken = {
8601
8601
  /**
8602
8602
  * Beginning/ending line numbers.
8603
8603
  */
8604
- map: number[];
8604
+ map: number[] | null;
8605
8605
  /**
8606
8606
  * Markup text.
8607
8607
  */
@@ -8609,7 +8609,7 @@ type MarkdownItToken = {
8609
8609
  /**
8610
8610
  * Arbitrary data.
8611
8611
  */
8612
- meta: any;
8612
+ meta: Object;
8613
8613
  /**
8614
8614
  * Level change.
8615
8615
  */
@@ -8622,6 +8622,15 @@ type MarkdownItToken = {
8622
8622
  * Token type.
8623
8623
  */
8624
8624
  type: string;
8625
+ };
8626
+ /**
8627
+ * markdown-it extended token.
8628
+ */
8629
+ type MarkdownItExtendedToken = {
8630
+ /**
8631
+ * Child nodes.
8632
+ */
8633
+ children: MarkdownItExtendedToken[] | null;
8625
8634
  /**
8626
8635
  * Line number (1-based).
8627
8636
  */
@@ -8631,6 +8640,10 @@ type MarkdownItToken = {
8631
8640
  */
8632
8641
  line: string;
8633
8642
  };
8643
+ /**
8644
+ * markdown-it token.
8645
+ */
8646
+ type MarkdownItToken = MarkdownItBaseToken & MarkdownItExtendedToken;
8634
8647
  type MicromarkTokenType = TokenType;
8635
8648
  /**
8636
8649
  * micromark token.
@@ -8684,23 +8697,23 @@ type RuleOnErrorInfo = {
8684
8697
  /**
8685
8698
  * Detail about the error.
8686
8699
  */
8687
- detail?: string;
8700
+ detail?: string | undefined;
8688
8701
  /**
8689
8702
  * Context for the error.
8690
8703
  */
8691
- context?: string;
8704
+ context?: string | undefined;
8692
8705
  /**
8693
8706
  * Link to more information.
8694
8707
  */
8695
- information?: URL;
8708
+ information?: URL | undefined;
8696
8709
  /**
8697
8710
  * Column number (1-based) and length.
8698
8711
  */
8699
- range?: number[];
8712
+ range?: number[] | undefined;
8700
8713
  /**
8701
8714
  * Fix information.
8702
8715
  */
8703
- fixInfo?: RuleOnErrorFixInfo;
8716
+ fixInfo?: RuleOnErrorFixInfo | undefined;
8704
8717
  };
8705
8718
  /**
8706
8719
  * Fix information for RuleOnErrorInfo.
@@ -8709,19 +8722,19 @@ type RuleOnErrorFixInfo = {
8709
8722
  /**
8710
8723
  * Line number (1-based).
8711
8724
  */
8712
- lineNumber?: number;
8725
+ lineNumber?: number | undefined;
8713
8726
  /**
8714
8727
  * Column of the fix (1-based).
8715
8728
  */
8716
- editColumn?: number;
8729
+ editColumn?: number | undefined;
8717
8730
  /**
8718
8731
  * Count of characters to delete.
8719
8732
  */
8720
- deleteCount?: number;
8733
+ deleteCount?: number | undefined;
8721
8734
  /**
8722
8735
  * Text to insert (after deleting).
8723
8736
  */
8724
- insertText?: string;
8737
+ insertText?: string | undefined;
8725
8738
  };
8726
8739
  /**
8727
8740
  * Rule definition.
@@ -8738,7 +8751,7 @@ type Rule$2 = {
8738
8751
  /**
8739
8752
  * Link to more information.
8740
8753
  */
8741
- information?: URL;
8754
+ information?: URL | undefined;
8742
8755
  /**
8743
8756
  * Rule tag(s).
8744
8757
  */
@@ -8750,7 +8763,7 @@ type Rule$2 = {
8750
8763
  /**
8751
8764
  * True if asynchronous.
8752
8765
  */
8753
- asynchronous?: boolean;
8766
+ asynchronous?: boolean | undefined;
8754
8767
  /**
8755
8768
  * Rule implementation.
8756
8769
  */
@@ -8760,7 +8773,7 @@ type Rule$2 = {
8760
8773
  * Rule configuration.
8761
8774
  */
8762
8775
  type RuleConfiguration = boolean | any; //#endregion
8763
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/exports.d.mts
8776
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
8764
8777
  type Rule$1 = Rule$2; //#endregion
8765
8778
  //#region src/changesets/markdownlint/rules/content-structure.d.ts
8766
8779
  /**
@@ -8501,7 +8501,7 @@ interface TokenTypeMap {
8501
8501
  chunkText: 'chunkText';
8502
8502
  chunkString: 'chunkString';
8503
8503
  } //#endregion
8504
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/markdownlint.d.mts
8504
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
8505
8505
  /**
8506
8506
  * Function to implement rule logic.
8507
8507
  */
@@ -8567,13 +8567,13 @@ type ParserMicromark = {
8567
8567
  tokens: MicromarkToken[];
8568
8568
  };
8569
8569
  /**
8570
- * markdown-it token.
8570
+ * markdown-it base token.
8571
8571
  */
8572
- type MarkdownItToken = {
8572
+ type MarkdownItBaseToken = {
8573
8573
  /**
8574
8574
  * HTML attributes.
8575
8575
  */
8576
- attrs: string[][];
8576
+ attrs: string[][] | null;
8577
8577
  /**
8578
8578
  * Block-level token.
8579
8579
  */
@@ -8581,7 +8581,7 @@ type MarkdownItToken = {
8581
8581
  /**
8582
8582
  * Child nodes.
8583
8583
  */
8584
- children: MarkdownItToken[];
8584
+ children: MarkdownItBaseToken[] | null;
8585
8585
  /**
8586
8586
  * Tag contents.
8587
8587
  */
@@ -8601,7 +8601,7 @@ type MarkdownItToken = {
8601
8601
  /**
8602
8602
  * Beginning/ending line numbers.
8603
8603
  */
8604
- map: number[];
8604
+ map: number[] | null;
8605
8605
  /**
8606
8606
  * Markup text.
8607
8607
  */
@@ -8609,7 +8609,7 @@ type MarkdownItToken = {
8609
8609
  /**
8610
8610
  * Arbitrary data.
8611
8611
  */
8612
- meta: any;
8612
+ meta: Object;
8613
8613
  /**
8614
8614
  * Level change.
8615
8615
  */
@@ -8622,6 +8622,15 @@ type MarkdownItToken = {
8622
8622
  * Token type.
8623
8623
  */
8624
8624
  type: string;
8625
+ };
8626
+ /**
8627
+ * markdown-it extended token.
8628
+ */
8629
+ type MarkdownItExtendedToken = {
8630
+ /**
8631
+ * Child nodes.
8632
+ */
8633
+ children: MarkdownItExtendedToken[] | null;
8625
8634
  /**
8626
8635
  * Line number (1-based).
8627
8636
  */
@@ -8631,6 +8640,10 @@ type MarkdownItToken = {
8631
8640
  */
8632
8641
  line: string;
8633
8642
  };
8643
+ /**
8644
+ * markdown-it token.
8645
+ */
8646
+ type MarkdownItToken = MarkdownItBaseToken & MarkdownItExtendedToken;
8634
8647
  type MicromarkTokenType = TokenType;
8635
8648
  /**
8636
8649
  * micromark token.
@@ -8684,23 +8697,23 @@ type RuleOnErrorInfo = {
8684
8697
  /**
8685
8698
  * Detail about the error.
8686
8699
  */
8687
- detail?: string;
8700
+ detail?: string | undefined;
8688
8701
  /**
8689
8702
  * Context for the error.
8690
8703
  */
8691
- context?: string;
8704
+ context?: string | undefined;
8692
8705
  /**
8693
8706
  * Link to more information.
8694
8707
  */
8695
- information?: URL;
8708
+ information?: URL | undefined;
8696
8709
  /**
8697
8710
  * Column number (1-based) and length.
8698
8711
  */
8699
- range?: number[];
8712
+ range?: number[] | undefined;
8700
8713
  /**
8701
8714
  * Fix information.
8702
8715
  */
8703
- fixInfo?: RuleOnErrorFixInfo;
8716
+ fixInfo?: RuleOnErrorFixInfo | undefined;
8704
8717
  };
8705
8718
  /**
8706
8719
  * Fix information for RuleOnErrorInfo.
@@ -8709,19 +8722,19 @@ type RuleOnErrorFixInfo = {
8709
8722
  /**
8710
8723
  * Line number (1-based).
8711
8724
  */
8712
- lineNumber?: number;
8725
+ lineNumber?: number | undefined;
8713
8726
  /**
8714
8727
  * Column of the fix (1-based).
8715
8728
  */
8716
- editColumn?: number;
8729
+ editColumn?: number | undefined;
8717
8730
  /**
8718
8731
  * Count of characters to delete.
8719
8732
  */
8720
- deleteCount?: number;
8733
+ deleteCount?: number | undefined;
8721
8734
  /**
8722
8735
  * Text to insert (after deleting).
8723
8736
  */
8724
- insertText?: string;
8737
+ insertText?: string | undefined;
8725
8738
  };
8726
8739
  /**
8727
8740
  * Rule definition.
@@ -8738,7 +8751,7 @@ type Rule$2 = {
8738
8751
  /**
8739
8752
  * Link to more information.
8740
8753
  */
8741
- information?: URL;
8754
+ information?: URL | undefined;
8742
8755
  /**
8743
8756
  * Rule tag(s).
8744
8757
  */
@@ -8750,7 +8763,7 @@ type Rule$2 = {
8750
8763
  /**
8751
8764
  * True if asynchronous.
8752
8765
  */
8753
- asynchronous?: boolean;
8766
+ asynchronous?: boolean | undefined;
8754
8767
  /**
8755
8768
  * Rule implementation.
8756
8769
  */
@@ -8760,7 +8773,7 @@ type Rule$2 = {
8760
8773
  * Rule configuration.
8761
8774
  */
8762
8775
  type RuleConfiguration = boolean | any; //#endregion
8763
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/exports.d.mts
8776
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
8764
8777
  type Rule$1 = Rule$2; //#endregion
8765
8778
  //#region src/changesets/markdownlint/rules/content-structure.d.ts
8766
8779
  /**
@@ -8501,7 +8501,7 @@ interface TokenTypeMap {
8501
8501
  chunkText: 'chunkText';
8502
8502
  chunkString: 'chunkString';
8503
8503
  } //#endregion
8504
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/markdownlint.d.mts
8504
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
8505
8505
  /**
8506
8506
  * Function to implement rule logic.
8507
8507
  */
@@ -8567,13 +8567,13 @@ type ParserMicromark = {
8567
8567
  tokens: MicromarkToken[];
8568
8568
  };
8569
8569
  /**
8570
- * markdown-it token.
8570
+ * markdown-it base token.
8571
8571
  */
8572
- type MarkdownItToken = {
8572
+ type MarkdownItBaseToken = {
8573
8573
  /**
8574
8574
  * HTML attributes.
8575
8575
  */
8576
- attrs: string[][];
8576
+ attrs: string[][] | null;
8577
8577
  /**
8578
8578
  * Block-level token.
8579
8579
  */
@@ -8581,7 +8581,7 @@ type MarkdownItToken = {
8581
8581
  /**
8582
8582
  * Child nodes.
8583
8583
  */
8584
- children: MarkdownItToken[];
8584
+ children: MarkdownItBaseToken[] | null;
8585
8585
  /**
8586
8586
  * Tag contents.
8587
8587
  */
@@ -8601,7 +8601,7 @@ type MarkdownItToken = {
8601
8601
  /**
8602
8602
  * Beginning/ending line numbers.
8603
8603
  */
8604
- map: number[];
8604
+ map: number[] | null;
8605
8605
  /**
8606
8606
  * Markup text.
8607
8607
  */
@@ -8609,7 +8609,7 @@ type MarkdownItToken = {
8609
8609
  /**
8610
8610
  * Arbitrary data.
8611
8611
  */
8612
- meta: any;
8612
+ meta: Object;
8613
8613
  /**
8614
8614
  * Level change.
8615
8615
  */
@@ -8622,6 +8622,15 @@ type MarkdownItToken = {
8622
8622
  * Token type.
8623
8623
  */
8624
8624
  type: string;
8625
+ };
8626
+ /**
8627
+ * markdown-it extended token.
8628
+ */
8629
+ type MarkdownItExtendedToken = {
8630
+ /**
8631
+ * Child nodes.
8632
+ */
8633
+ children: MarkdownItExtendedToken[] | null;
8625
8634
  /**
8626
8635
  * Line number (1-based).
8627
8636
  */
@@ -8631,6 +8640,10 @@ type MarkdownItToken = {
8631
8640
  */
8632
8641
  line: string;
8633
8642
  };
8643
+ /**
8644
+ * markdown-it token.
8645
+ */
8646
+ type MarkdownItToken = MarkdownItBaseToken & MarkdownItExtendedToken;
8634
8647
  type MicromarkTokenType = TokenType;
8635
8648
  /**
8636
8649
  * micromark token.
@@ -8684,23 +8697,23 @@ type RuleOnErrorInfo = {
8684
8697
  /**
8685
8698
  * Detail about the error.
8686
8699
  */
8687
- detail?: string;
8700
+ detail?: string | undefined;
8688
8701
  /**
8689
8702
  * Context for the error.
8690
8703
  */
8691
- context?: string;
8704
+ context?: string | undefined;
8692
8705
  /**
8693
8706
  * Link to more information.
8694
8707
  */
8695
- information?: URL;
8708
+ information?: URL | undefined;
8696
8709
  /**
8697
8710
  * Column number (1-based) and length.
8698
8711
  */
8699
- range?: number[];
8712
+ range?: number[] | undefined;
8700
8713
  /**
8701
8714
  * Fix information.
8702
8715
  */
8703
- fixInfo?: RuleOnErrorFixInfo;
8716
+ fixInfo?: RuleOnErrorFixInfo | undefined;
8704
8717
  };
8705
8718
  /**
8706
8719
  * Fix information for RuleOnErrorInfo.
@@ -8709,19 +8722,19 @@ type RuleOnErrorFixInfo = {
8709
8722
  /**
8710
8723
  * Line number (1-based).
8711
8724
  */
8712
- lineNumber?: number;
8725
+ lineNumber?: number | undefined;
8713
8726
  /**
8714
8727
  * Column of the fix (1-based).
8715
8728
  */
8716
- editColumn?: number;
8729
+ editColumn?: number | undefined;
8717
8730
  /**
8718
8731
  * Count of characters to delete.
8719
8732
  */
8720
- deleteCount?: number;
8733
+ deleteCount?: number | undefined;
8721
8734
  /**
8722
8735
  * Text to insert (after deleting).
8723
8736
  */
8724
- insertText?: string;
8737
+ insertText?: string | undefined;
8725
8738
  };
8726
8739
  /**
8727
8740
  * Rule definition.
@@ -8738,7 +8751,7 @@ type Rule$2 = {
8738
8751
  /**
8739
8752
  * Link to more information.
8740
8753
  */
8741
- information?: URL;
8754
+ information?: URL | undefined;
8742
8755
  /**
8743
8756
  * Rule tag(s).
8744
8757
  */
@@ -8750,7 +8763,7 @@ type Rule$2 = {
8750
8763
  /**
8751
8764
  * True if asynchronous.
8752
8765
  */
8753
- asynchronous?: boolean;
8766
+ asynchronous?: boolean | undefined;
8754
8767
  /**
8755
8768
  * Rule implementation.
8756
8769
  */
@@ -8760,7 +8773,7 @@ type Rule$2 = {
8760
8773
  * Rule configuration.
8761
8774
  */
8762
8775
  type RuleConfiguration = boolean | any; //#endregion
8763
- //#region ../../node_modules/.pnpm/markdownlint@0.40.0/node_modules/markdownlint/lib/exports.d.mts
8776
+ //#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
8764
8777
  type Rule$1 = Rule$2; //#endregion
8765
8778
  //#region src/changesets/markdownlint/rules/content-structure.d.ts
8766
8779
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/silk",
3
- "version": "0.5.0",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
5
  "description": "The single Silk Suite dev-tooling package — changeset, commitlint, lint, and biome conventions",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk",
@@ -73,8 +73,8 @@
73
73
  "@changesets/cli": "^2.31.0",
74
74
  "@commitlint/cli": "^21.0.1",
75
75
  "@commitlint/config-conventional": "^21.0.2",
76
- "@savvy-web/cli": "0.5.0",
77
- "@savvy-web/mcp": "0.5.0",
76
+ "@savvy-web/cli": "1.0.0",
77
+ "@savvy-web/mcp": "1.0.0",
78
78
  "@types/node": "^25.9.0",
79
79
  "@typescript/native-preview": "^7.0.0-dev.20260513.1",
80
80
  "commitizen": "^4.3.0",