usfm3 0.1.6 → 0.1.7

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 CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "usfm3",
3
3
  "type": "module",
4
- "version": "0.1.6",
4
+ "description": "Error-tolerant USFM 3.x parser with USJ, USX, and USFM output",
5
+ "version": "0.1.7",
6
+ "license": "MIT",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "https://github.com/jcuenod/usfm3"
@@ -17,6 +19,15 @@
17
19
  "sideEffects": [
18
20
  "./snippets/*"
19
21
  ],
22
+ "keywords": [
23
+ "usfm",
24
+ "usj",
25
+ "usx",
26
+ "vref",
27
+ "parser",
28
+ "bible",
29
+ "scripture"
30
+ ],
20
31
  "exports": {
21
32
  ".": {
22
33
  "node": {
package/usfm3_wasm.d.ts CHANGED
@@ -27,7 +27,7 @@ export interface Diagnostic {
27
27
  /**
28
28
  * Machine-readable diagnostic code.
29
29
  */
30
- export type DiagnosticCode = "UnknownMarker" | "UnclosedMarker" | "StrayCloseMarker" | "MisnestedMarker" | "MissingNestingPrefix" | "ImplicitClose" | "UnclosedNote" | "UnclosedAtEof" | "InvalidChapterSequence" | "InvalidVerseSequence" | "DuplicateChapter" | "DuplicateId" | "MissingIdMarker" | "InvalidBookCode" | "NoteSubmarkerOutsideNote" | "TextBeforeId" | "HeaderAfterBody" | "MilestoneMismatch" | "InvalidAttributes" | "MissingChapterNumber" | "MissingVerseNumber" | "MissingChapterMarker" | "CharCrossesVerseBoundary" | "EmptyFigure" | "UnquotedAttributeValue" | "MissingRequiredAttribute" | "DefaultAttributeNotDefined" | "BodyParagraphBeforeChapter" | "NonEmptyBlankLine" | "LeadingZeros" | "EmptyWordMarker" | "MissingMilestoneSelfClose";
30
+ export type DiagnosticCode = "UnknownMarker" | "UnclosedMarker" | "StrayCloseMarker" | "MisnestedMarker" | "MissingNestingPrefix" | "ImplicitClose" | "UnclosedNote" | "UnclosedAtEof" | "InvalidChapterSequence" | "InvalidVerseSequence" | "DuplicateChapter" | "DuplicateId" | "MissingIdMarker" | "InvalidBookCode" | "NoteSubmarkerOutsideNote" | "TextBeforeId" | "HeaderAfterBody" | "MilestoneMismatch" | "InvalidAttributes" | "MissingChapterNumber" | "MissingVerseNumber" | "VerseOutsideParagraph" | "MissingChapterMarker" | "CharCrossesVerseBoundary" | "EmptyFigure" | "UnquotedAttributeValue" | "MissingRequiredAttribute" | "DefaultAttributeNotDefined" | "BodyParagraphBeforeChapter" | "NonEmptyBlankLine" | "LeadingZeros" | "EmptyWordMarker" | "MissingMilestoneSelfClose";
31
31
 
32
32
  /**
33
33
  * Options for the `parse` function.
Binary file