advanced-html-to-docx 1.0.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
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "advanced-html-to-docx",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Convert HTML content to DOCX with full style support",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"html",
|
|
7
|
+
"docx",
|
|
8
|
+
"html-to-docx",
|
|
9
|
+
"word",
|
|
10
|
+
"office"
|
|
11
|
+
],
|
|
12
|
+
"main": "dist/html-to-docx.cjs.js",
|
|
13
|
+
"module": "dist/html-to-docx.esm.js",
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "rollup -c",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@oozcitak/util": "8.3.4",
|
|
25
|
+
"@oozcitak/dom": "1.15.6",
|
|
26
|
+
"color-name": "^1.1.4",
|
|
27
|
+
"html-entities": "^2.3.3",
|
|
28
|
+
"html-to-vdom": "^0.7.0",
|
|
29
|
+
"image-size": "^1.0.0",
|
|
30
|
+
"image-to-base64": "^2.2.0",
|
|
31
|
+
"jszip": "^3.7.1",
|
|
32
|
+
"lodash": "^4.17.21",
|
|
33
|
+
"mime-types": "^2.1.35",
|
|
34
|
+
"nanoid": "^3.1.25",
|
|
35
|
+
"virtual-dom": "^2.1.1",
|
|
36
|
+
"xmlbuilder2": "2.1.2"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@rollup/plugin-commonjs": "^12.0.0",
|
|
40
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
41
|
+
"@rollup/plugin-node-resolve": "^13.1.1",
|
|
42
|
+
"rollup": "^2.62.0",
|
|
43
|
+
"rollup-plugin-terser": "^7.0.2"
|
|
44
|
+
}
|
|
45
|
+
}
|