@json-to-office/jto-ops 1.2.0 → 1.5.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/dist/index.d.ts +87 -2
- package/dist/index.js +393 -58
- package/dist/index.js.map +1 -1
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@json-to-office/jto-ops",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "JSON to Office host operations - format adapters, LibreOffice rasterizer and font staging, free of terminal dependencies",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"koffi": "^2.16.1",
|
|
21
|
-
"@json-to-office/core-docx": "^1.
|
|
22
|
-
"@json-to-office/core-pptx": "^1.
|
|
23
|
-
"@json-to-office/
|
|
24
|
-
"@json-to-office/shared
|
|
25
|
-
"@json-to-office/shared-
|
|
21
|
+
"@json-to-office/core-docx": "^1.5.0",
|
|
22
|
+
"@json-to-office/core-pptx": "^1.5.0",
|
|
23
|
+
"@json-to-office/quality": "^1.5.0",
|
|
24
|
+
"@json-to-office/shared": "^1.5.0",
|
|
25
|
+
"@json-to-office/shared-docx": "^1.5.0",
|
|
26
|
+
"@json-to-office/shared-pptx": "^1.5.0"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@types/node": "20.11.0",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"typecheck": "tsc --noEmit",
|
|
65
66
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
66
67
|
"test": "vitest run --passWithNoTests",
|
|
68
|
+
"test:ground-truth": "vitest run --config vitest.harness.config.ts",
|
|
67
69
|
"test:watch": "vitest",
|
|
68
70
|
"test:coverage": "vitest run --coverage --passWithNoTests"
|
|
69
71
|
}
|