@paroicms/markdown-to-tiptap-json 0.2.8 → 0.2.10

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.
@@ -4,3 +4,4 @@ export interface ConversionResult {
4
4
  issues?: string[];
5
5
  }
6
6
  export declare function convertMarkdownToTiptap(markdown: string): ConversionResult;
7
+ //# sourceMappingURL=converter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"converter.d.ts","sourceRoot":"","sources":["../src/converter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAkC,eAAe,EAAE,MAAM,YAAY,CAAC;AAElF,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,eAAe,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,gBAAgB,CAwB1E"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { convertMarkdownToTiptap } from "./converter.js";
2
2
  export type { ConversionResult } from "./converter.js";
3
3
  export type { TiptapJsonMark, TiptapJsonNode, TiptapJsonValue } from "./types.js";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AACzD,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACvD,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC"}
package/dist/types.d.ts CHANGED
@@ -13,3 +13,4 @@ export interface TiptapJsonMark {
13
13
  type: string;
14
14
  attrs?: Record<string, any>;
15
15
  }
16
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC5B,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;IAC3B,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/markdown-to-tiptap-json",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "Convert Markdown to Tiptap JSON",
5
5
  "keywords": [
6
6
  "markdown",
@@ -20,19 +20,20 @@
20
20
  "typings": "dist/index.d.ts",
21
21
  "scripts": {
22
22
  "build": "tsc",
23
+ "build:ci": "tsc --declarationMap false",
23
24
  "clear": "rimraf dist/*",
24
25
  "dev": "tsc --watch --preserveWatchOutput",
25
26
  "test": "vitest run",
26
27
  "test:watch": "vitest"
27
28
  },
28
29
  "dependencies": {
29
- "markdown-it": "~14.1.0"
30
+ "markdown-it": "~14.1.1"
30
31
  },
31
32
  "devDependencies": {
32
33
  "@types/markdown-it": "~14.1.2",
33
- "rimraf": "~6.1.2",
34
- "typescript": "~5.9.3",
35
- "vitest": "~4.0.17"
34
+ "rimraf": "~6.1.3",
35
+ "typescript": "~6.0.2",
36
+ "vitest": "~4.1.2"
36
37
  },
37
38
  "files": [
38
39
  "dist"