ai-pdf-builder 0.3.0 → 0.3.1

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/cli.js CHANGED
@@ -536,7 +536,7 @@ async function generateNDA(content, metadata, options) {
536
536
  }
537
537
 
538
538
  // src/cli.ts
539
- var VERSION = "0.2.0";
539
+ var VERSION = "0.3.1";
540
540
  var HELP = `
541
541
  ai-pdf-builder v${VERSION}
542
542
  Generate professional PDFs from Markdown
package/dist/cli.mjs CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  // src/cli.ts
16
16
  import * as fs from "fs";
17
17
  import * as path from "path";
18
- var VERSION = "0.2.0";
18
+ var VERSION = "0.3.1";
19
19
  var HELP = `
20
20
  ai-pdf-builder v${VERSION}
21
21
  Generate professional PDFs from Markdown
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ai-pdf-builder",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Professional PDF generation from Markdown using Pandoc and LaTeX",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
8
  "bin": {
9
- "ai-pdf-builder": "./dist/cli.js"
9
+ "ai-pdf-builder": "dist/cli.js"
10
10
  },
11
11
  "exports": {
12
12
  ".": {