documents.js 4.0.23 → 4.0.25
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 +1 -1
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -728,7 +728,7 @@ Release, CI, and commit-message conventions are all workspace-wide, not package-
|
|
|
728
728
|
|
|
729
729
|
## Contributing
|
|
730
730
|
|
|
731
|
-
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/documents.js/`; see
|
|
731
|
+
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/documents.js/`; see [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions.
|
|
732
732
|
|
|
733
733
|
## References
|
|
734
734
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "documents.js",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.25",
|
|
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": {
|
|
@@ -54,9 +54,10 @@
|
|
|
54
54
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
55
55
|
"lint": "turbo run _lint",
|
|
56
56
|
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
57
|
-
"typecheck": "turbo run _typecheck _typecheck:node",
|
|
57
|
+
"typecheck": "turbo run _typecheck _typecheck:node _typecheck:attw",
|
|
58
58
|
"_typecheck": "tsc -p tsconfig.json",
|
|
59
59
|
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
60
|
+
"_typecheck:attw": "attw --pack",
|
|
60
61
|
"test": "turbo run _test",
|
|
61
62
|
"_test": "vitest run --project unit",
|
|
62
63
|
"test:workers": "turbo run _test:workers",
|
|
@@ -84,13 +85,13 @@
|
|
|
84
85
|
"license": "MIT",
|
|
85
86
|
"packageManager": "pnpm@11.6.0",
|
|
86
87
|
"dependencies": {
|
|
87
|
-
"byte-codec": "^1.1.
|
|
88
|
-
"document-schema.js": "^4.3.
|
|
88
|
+
"byte-codec": "^1.1.13",
|
|
89
|
+
"document-schema.js": "^4.3.7",
|
|
89
90
|
"fflate": "^0.8.3",
|
|
90
|
-
"markdown-codec": "^4.0.
|
|
91
|
-
"odf.js": "^5.0.
|
|
92
|
-
"ooxml.js": "^4.0
|
|
93
|
-
"pdf-codec": "^3.0.
|
|
91
|
+
"markdown-codec": "^4.0.10",
|
|
92
|
+
"odf.js": "^5.0.7",
|
|
93
|
+
"ooxml.js": "^4.1.0",
|
|
94
|
+
"pdf-codec": "^3.0.12",
|
|
94
95
|
"temml": "0.13.4",
|
|
95
96
|
"zod": "^4.4.3"
|
|
96
97
|
},
|