ooxml.js 2.8.0 → 2.8.2
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 +3 -3
package/README.md
CHANGED
|
@@ -198,7 +198,7 @@ const out = encodeCompactPackage(compact); // CompactPackage -> OOXML bytes dire
|
|
|
198
198
|
|
|
199
199
|
```sh
|
|
200
200
|
pnpm build # tsdown -> dist/ (one ESM + CJS + .d.ts set per source module, via tsdown.config.ts)
|
|
201
|
-
pnpm lint # eslint . --max-warnings 0
|
|
201
|
+
pnpm lint # eslint . --fix --cache --max-warnings 0
|
|
202
202
|
pnpm typecheck # tsc --noEmit
|
|
203
203
|
pnpm test # vitest run
|
|
204
204
|
pnpm test:watch # vitest
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ooxml.js",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.2",
|
|
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": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsdown",
|
|
49
49
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
50
|
-
"lint": "eslint . --max-warnings 0",
|
|
50
|
+
"lint": "eslint . --fix --cache --max-warnings 0",
|
|
51
51
|
"typecheck": "tsc --noEmit",
|
|
52
52
|
"test": "vitest run --project unit",
|
|
53
53
|
"test:watch": "vitest --project unit",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"license": "MIT",
|
|
70
70
|
"packageManager": "pnpm@11.6.0",
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"document-schema.js": "^2.3.
|
|
72
|
+
"document-schema.js": "^2.3.5",
|
|
73
73
|
"fast-xml-parser": "^5.10.1",
|
|
74
74
|
"fflate": "^0.8.3",
|
|
75
75
|
"zod": "^4.4.3"
|