ooxml.js 2.8.18 → 2.9.0
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 +18 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ooxml.js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
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": {
|
|
@@ -45,15 +45,23 @@
|
|
|
45
45
|
"node": ">=20"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "
|
|
48
|
+
"build": "turbo run _build",
|
|
49
|
+
"_build": "tsdown",
|
|
49
50
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
50
|
-
"lint": "
|
|
51
|
-
"
|
|
52
|
-
"
|
|
51
|
+
"lint": "turbo run _lint",
|
|
52
|
+
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
53
|
+
"typecheck": "turbo run _typecheck _typecheck:node",
|
|
54
|
+
"_typecheck": "tsc -p tsconfig.json",
|
|
55
|
+
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
56
|
+
"test": "turbo run _test",
|
|
57
|
+
"_test": "vitest run --project unit",
|
|
53
58
|
"test:watch": "vitest --project unit",
|
|
54
|
-
"test:coverage": "
|
|
55
|
-
"
|
|
56
|
-
"test:
|
|
59
|
+
"test:coverage": "turbo run _test:coverage",
|
|
60
|
+
"_test:coverage": "vitest run --project unit --coverage",
|
|
61
|
+
"test:smoke": "turbo run _test:smoke",
|
|
62
|
+
"_test:smoke": "tsdown && vitest run --project smoke",
|
|
63
|
+
"test:workers": "turbo run _test:workers",
|
|
64
|
+
"_test:workers": "vitest run --config vitest.workers.config.ts",
|
|
57
65
|
"prepare": "husky",
|
|
58
66
|
"release": "semantic-release"
|
|
59
67
|
},
|
|
@@ -70,7 +78,7 @@
|
|
|
70
78
|
"license": "MIT",
|
|
71
79
|
"packageManager": "pnpm@11.6.0",
|
|
72
80
|
"dependencies": {
|
|
73
|
-
"document-schema.js": "^2.
|
|
81
|
+
"document-schema.js": "^2.5.0",
|
|
74
82
|
"fast-xml-parser": "^5.10.1",
|
|
75
83
|
"fflate": "^0.8.3",
|
|
76
84
|
"zod": "^4.4.3"
|
|
@@ -92,6 +100,7 @@
|
|
|
92
100
|
"publint": "^0.3.21",
|
|
93
101
|
"semantic-release": "^25.0.8",
|
|
94
102
|
"tsdown": "^0.22.13",
|
|
103
|
+
"turbo": "^2.10.8",
|
|
95
104
|
"typescript": "^6.0.3",
|
|
96
105
|
"typescript-eslint": "^8.65.0",
|
|
97
106
|
"vitest": "^4.1.10"
|