js.documents 7.0.3 → 7.1.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/package.json +19 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "js.documents",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"description": "Bidirectional docx/pptx <-> PDF conversion and a read+write editable OOXML document model, built on ooxml.js and Zod 4 codecs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -77,29 +77,33 @@
|
|
|
77
77
|
],
|
|
78
78
|
"license": "MIT",
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"archive-codec": "^1.
|
|
81
|
-
"byte-codec": "^1.
|
|
82
|
-
"doc-codec": "^2.
|
|
83
|
-
"document-schema.js": "^6.
|
|
80
|
+
"archive-codec": "^1.5.0",
|
|
81
|
+
"byte-codec": "^1.4.0",
|
|
82
|
+
"doc-codec": "^2.1.0",
|
|
83
|
+
"document-schema.js": "^6.1.0",
|
|
84
84
|
"fflate": "^0.8.3",
|
|
85
|
-
"markdown-codec": "^6.
|
|
86
|
-
"odf.js": "^7.
|
|
87
|
-
"ooxml.js": "^7.
|
|
88
|
-
"pdf-codec": "^
|
|
89
|
-
"ppt-codec": "^1.
|
|
90
|
-
"rtf-codec": "^2.
|
|
85
|
+
"markdown-codec": "^6.2.0",
|
|
86
|
+
"odf.js": "^7.1.0",
|
|
87
|
+
"ooxml.js": "^7.1.0",
|
|
88
|
+
"pdf-codec": "^4.0.0",
|
|
89
|
+
"ppt-codec": "^1.2.0",
|
|
90
|
+
"rtf-codec": "^2.1.0",
|
|
91
91
|
"temml": "0.13.4",
|
|
92
|
-
"wpd-codec": "^2.
|
|
93
|
-
"xls-codec": "^4.
|
|
92
|
+
"wpd-codec": "^2.1.0",
|
|
93
|
+
"xls-codec": "^4.1.0",
|
|
94
94
|
"zod": "^4.4.3"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@arethetypeswrong/cli": "^0.18.5",
|
|
98
98
|
"@cloudflare/vitest-pool-workers": "^0.21.2",
|
|
99
|
+
"@stryker-mutator/core": "^10.0.0",
|
|
100
|
+
"@stryker-mutator/typescript-checker": "^10.0.0",
|
|
101
|
+
"@stryker-mutator/vitest-runner": "^10.0.0",
|
|
99
102
|
"@types/node": "^26.1.1",
|
|
100
103
|
"@vitest/coverage-v8": "^4.1.10",
|
|
101
104
|
"eslint": "^10.8.0",
|
|
102
105
|
"husky": "^9.1.7",
|
|
106
|
+
"jiti": "2.7.0",
|
|
103
107
|
"publint": "^0.3.21",
|
|
104
108
|
"semantic-release": "^25.0.8",
|
|
105
109
|
"tsdown": "^0.22.13",
|
|
@@ -123,6 +127,8 @@
|
|
|
123
127
|
"test:watch": "vitest --project unit",
|
|
124
128
|
"test:coverage": "turbo run _test:coverage",
|
|
125
129
|
"_test:coverage": "vitest run --project unit --coverage",
|
|
130
|
+
"test:mutation": "turbo run _test:mutation",
|
|
131
|
+
"_test:mutation": "stryker run stryker.config.mjs",
|
|
126
132
|
"test:smoke": "turbo run _test:smoke",
|
|
127
133
|
"_test:smoke": "vitest run --project smoke",
|
|
128
134
|
"release": "semantic-release"
|