@turbodocx/html-to-docx 1.21.0 → 1.22.2
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/README.md +25 -17
- package/dist/html-to-docx.browser.esm.js +17 -0
- package/dist/html-to-docx.browser.js +4 -4
- package/dist/html-to-docx.esm.js +2 -2
- package/dist/html-to-docx.umd.js +2 -2
- package/package.json +25 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turbodocx/html-to-docx",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.2",
|
|
4
4
|
"description": "HTML to DOCX converter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"html-to-docx",
|
|
@@ -42,9 +42,24 @@
|
|
|
42
42
|
"rtl",
|
|
43
43
|
"right to left"
|
|
44
44
|
],
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./index.d.ts",
|
|
48
|
+
"node": {
|
|
49
|
+
"import": "./dist/html-to-docx.esm.js",
|
|
50
|
+
"require": "./dist/html-to-docx.umd.js"
|
|
51
|
+
},
|
|
52
|
+
"browser": "./dist/html-to-docx.browser.esm.js",
|
|
53
|
+
"import": "./dist/html-to-docx.esm.js",
|
|
54
|
+
"require": "./dist/html-to-docx.umd.js",
|
|
55
|
+
"default": "./dist/html-to-docx.esm.js"
|
|
56
|
+
},
|
|
57
|
+
"./dist/*": "./dist/*",
|
|
58
|
+
"./package.json": "./package.json"
|
|
59
|
+
},
|
|
45
60
|
"main": "dist/html-to-docx.umd.js",
|
|
46
61
|
"module": "dist/html-to-docx.esm.js",
|
|
47
|
-
"browser": "dist/html-to-docx.browser.js",
|
|
62
|
+
"browser": "dist/html-to-docx.browser.esm.js",
|
|
48
63
|
"types": "index.d.ts",
|
|
49
64
|
"files": [
|
|
50
65
|
"dist",
|
|
@@ -85,7 +100,7 @@
|
|
|
85
100
|
},
|
|
86
101
|
"repository": {
|
|
87
102
|
"type": "git",
|
|
88
|
-
"url": "git+https://github.com/
|
|
103
|
+
"url": "git+https://github.com/TurboDocx/html-to-docx.git"
|
|
89
104
|
},
|
|
90
105
|
"author": "TurboDocx, Inc.",
|
|
91
106
|
"contributors": [
|
|
@@ -117,7 +132,8 @@
|
|
|
117
132
|
"demomacro",
|
|
118
133
|
"29217321",
|
|
119
134
|
"FultonG",
|
|
120
|
-
"odex21"
|
|
135
|
+
"odex21",
|
|
136
|
+
"elefevre"
|
|
121
137
|
],
|
|
122
138
|
"license": "MIT",
|
|
123
139
|
"bugs": {
|
|
@@ -163,16 +179,19 @@
|
|
|
163
179
|
"html-entities": "^2.3.3",
|
|
164
180
|
"html-minifier-terser": "^7.2.0",
|
|
165
181
|
"htmlparser2": "^10.0.0",
|
|
166
|
-
"image-size": "^2.0.2",
|
|
167
182
|
"jszip": "^3.7.1",
|
|
168
183
|
"lodash": "^4.17.21",
|
|
169
184
|
"lru-cache": "^10.4.3",
|
|
170
185
|
"mime-types": "^2.1.35",
|
|
171
|
-
"nanoid": "^3.
|
|
186
|
+
"nanoid": "^3.3.18",
|
|
187
|
+
"probe-image-size": "^7.2.3",
|
|
172
188
|
"xmlbuilder2": "2.1.2"
|
|
173
189
|
},
|
|
174
190
|
"overrides": {
|
|
175
191
|
"bl": "^1.2.3",
|
|
192
|
+
"form-data": "^4.0.6",
|
|
193
|
+
"js-yaml@3": "^3.15.1",
|
|
194
|
+
"js-yaml@4": "^4.3.1",
|
|
176
195
|
"semver": "^7.6.0",
|
|
177
196
|
"sharp": {
|
|
178
197
|
"semver": "^7.6.0"
|