odf.js 5.0.6 → 5.0.8
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 +4 -3
package/README.md
CHANGED
|
@@ -245,7 +245,7 @@ Release, CI, and commit-message conventions are all workspace-wide, not package-
|
|
|
245
245
|
|
|
246
246
|
## Contributing
|
|
247
247
|
|
|
248
|
-
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/odf.js/`; see
|
|
248
|
+
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/odf.js/`; see [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions.
|
|
249
249
|
|
|
250
250
|
## References
|
|
251
251
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "odf.js",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.8",
|
|
4
4
|
"description": "Type-safe, lossless round-trip conversion between OpenDocument Format packages (odt, ods, odp) and JSON, hand-written and dependency-minimal, built on Zod 4 codecs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -51,8 +51,9 @@
|
|
|
51
51
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
52
52
|
"lint": "turbo run _lint",
|
|
53
53
|
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
54
|
-
"typecheck": "turbo run _typecheck",
|
|
54
|
+
"typecheck": "turbo run _typecheck _typecheck:attw",
|
|
55
55
|
"_typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.node.json",
|
|
56
|
+
"_typecheck:attw": "attw --pack",
|
|
56
57
|
"test": "turbo run _test",
|
|
57
58
|
"_test": "vitest run --project unit",
|
|
58
59
|
"test:workers": "turbo run _test:workers",
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
"license": "MIT",
|
|
79
80
|
"packageManager": "pnpm@11.6.0",
|
|
80
81
|
"dependencies": {
|
|
81
|
-
"document-schema.js": "^4.
|
|
82
|
+
"document-schema.js": "^4.5.0",
|
|
82
83
|
"fast-xml-parser": "^5.10.1",
|
|
83
84
|
"fflate": "^0.8.3",
|
|
84
85
|
"zod": "^4.4.3"
|