@paperjsx/json-to-docx-pro 0.0.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/LICENSE +7 -0
- package/README.md +60 -0
- package/dist/index.d.ts +63 -0
- package/dist-pro/index.js +1162 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@paperjsx/json-to-docx-pro",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"description": "PaperJSX Pro DOCX engine — pagination, compliance, themes, PVCE charts, font subsetting",
|
|
9
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/paperjsx/json-to-docx"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://paperjsx.com",
|
|
16
|
+
"bugs": "https://github.com/paperjsx/json-to-docx/issues",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"json-to-docx",
|
|
19
|
+
"docx",
|
|
20
|
+
"document-generation",
|
|
21
|
+
"word",
|
|
22
|
+
"pro"
|
|
23
|
+
],
|
|
24
|
+
"main": "./dist-pro/index.js",
|
|
25
|
+
"module": "./dist-pro/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist-pro/index.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist-pro",
|
|
35
|
+
"dist/index.d.ts",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.0.0"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"docx": "^8.5.0",
|
|
44
|
+
"fast-xml-parser": "^5.5.7",
|
|
45
|
+
"jszip": "^3.10.1",
|
|
46
|
+
"zod": "^3.22.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"opentype.js": ">=1.3.0",
|
|
50
|
+
"pdf-lib": ">=1.17.0",
|
|
51
|
+
"sharp": ">=0.32.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependenciesMeta": {
|
|
54
|
+
"sharp": {
|
|
55
|
+
"optional": true
|
|
56
|
+
},
|
|
57
|
+
"pdf-lib": {
|
|
58
|
+
"optional": true
|
|
59
|
+
},
|
|
60
|
+
"opentype.js": {
|
|
61
|
+
"optional": true
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"paperjsx": {
|
|
65
|
+
"packCheck": {
|
|
66
|
+
"forbiddenContentSubstrings": [
|
|
67
|
+
"PAPERJSX_TEST_MODE",
|
|
68
|
+
"PAPERJSX_PDF_TEST_MODE",
|
|
69
|
+
"PAPERJSX_XLSX_TEST_MODE"
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|