ooxml.js 4.0.11 → 4.0.12
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
|
@@ -314,7 +314,7 @@ Release, CI, and commit-message conventions are all workspace-wide, not package-
|
|
|
314
314
|
|
|
315
315
|
## Contributing
|
|
316
316
|
|
|
317
|
-
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/ooxml.js/`; see
|
|
317
|
+
Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/ooxml.js/`; see [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions.
|
|
318
318
|
|
|
319
319
|
## References
|
|
320
320
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ooxml.js",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.12",
|
|
4
4
|
"description": "Type-safe, lossless round-trip conversion between OOXML packages (docx, pptx, xlsx) and JSON, built on Zod 4 codecs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -51,9 +51,10 @@
|
|
|
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 _typecheck:node",
|
|
54
|
+
"typecheck": "turbo run _typecheck _typecheck:node _typecheck:attw",
|
|
55
55
|
"_typecheck": "tsc -p tsconfig.json",
|
|
56
56
|
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
57
|
+
"_typecheck:attw": "attw --pack",
|
|
57
58
|
"test": "turbo run _test",
|
|
58
59
|
"_test": "vitest run --project unit",
|
|
59
60
|
"test:watch": "vitest --project unit",
|
|
@@ -79,7 +80,7 @@
|
|
|
79
80
|
"license": "MIT",
|
|
80
81
|
"packageManager": "pnpm@11.6.0",
|
|
81
82
|
"dependencies": {
|
|
82
|
-
"document-schema.js": "^4.3.
|
|
83
|
+
"document-schema.js": "^4.3.7",
|
|
83
84
|
"fast-xml-parser": "^5.10.1",
|
|
84
85
|
"fflate": "^0.8.3",
|
|
85
86
|
"zod": "^4.4.3"
|