pdfnative 1.3.0 → 1.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdfnative",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Zero-dependency native PDF generation library. 22 scripts (Arabic, Hebrew, Thai, CJK, Devanagari, Telugu, Bengali, Tamil, Sinhala, Tibetan, Khmer, Myanmar, Ethiopic, Cyrillic, Greek, Georgian, Armenian, Latin), BiDi, PDF/A-1b/2b/3b, AES encryption, digital signatures, AcroForm, barcodes, SVG, COLRv1 colour emoji. Pure JavaScript ISO 32000-1 implementation.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -40,7 +40,8 @@
40
40
  ],
41
41
  "sideEffects": false,
42
42
  "bin": {
43
- "pdfnative-build-font": "./tools/build-font-data.cjs"
43
+ "pdfnative-build-font": "./tools/build-font-data.cjs",
44
+ "pdfnative-build-emoji-font": "./dist/tools/build-emoji-font.js"
44
45
  },
45
46
  "scripts": {
46
47
  "build": "tsup",
@@ -104,6 +105,16 @@
104
105
  "watermark",
105
106
  "web-worker",
106
107
  "streaming",
108
+ "outline",
109
+ "bookmarks",
110
+ "page-labels",
111
+ "merge-pdf",
112
+ "split-pdf",
113
+ "extract-pdf",
114
+ "pdf-manipulation",
115
+ "viewer-preferences",
116
+ "rsa",
117
+ "ecdsa",
107
118
  "typescript"
108
119
  ],
109
120
  "author": "Nizoka <hello@pdfnative.dev> (https://pdfnative.dev)",
@@ -131,9 +142,12 @@
131
142
  "@vitest/coverage-v8": "^4.1.8",
132
143
  "eslint": "^9.0.0",
133
144
  "tsup": "^8.0.0",
134
- "tsx": "^4.21.0",
145
+ "tsx": "^4.22.4",
135
146
  "typescript": "^5.4.0",
136
147
  "typescript-eslint": "^8.57.2",
137
148
  "vitest": "^4.1.8"
149
+ },
150
+ "overrides": {
151
+ "esbuild": "0.28.1"
138
152
  }
139
153
  }