docx 9.0.2 → 9.0.3
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 -0
- package/build/index.cjs +718 -639
- package/build/index.d.ts +190 -203
- package/build/index.iife.js +718 -639
- package/build/index.mjs +718 -639
- package/build/index.umd.js +718 -639
- package/package.json +14 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docx",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3",
|
|
4
4
|
"description": "Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.umd.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"test": "vitest --ui --coverage",
|
|
23
23
|
"test:ci": "vitest run --coverage",
|
|
24
24
|
"prepublishOnly": "npm run build --omit=dev",
|
|
25
|
-
"lint": "eslint --
|
|
25
|
+
"lint": "eslint --flag unstable_ts_config --config eslint.config.ts",
|
|
26
26
|
"predemo": "npm run build",
|
|
27
27
|
"demo": "tsx ./demo/index.ts",
|
|
28
28
|
"typedoc": "typedoc src/index.ts --tsconfig tsconfig.typedoc.json",
|
|
@@ -68,37 +68,42 @@
|
|
|
68
68
|
},
|
|
69
69
|
"homepage": "https://docx.js.org",
|
|
70
70
|
"devDependencies": {
|
|
71
|
+
"@eslint/compat": "^1.2.1",
|
|
72
|
+
"@types/eslint__js": "^8.42.3",
|
|
71
73
|
"@types/inquirer": "^9.0.3",
|
|
72
74
|
"@types/prompt": "^1.1.1",
|
|
73
75
|
"@types/unzipper": "^0.10.4",
|
|
74
76
|
"@types/xml": "^1.0.8",
|
|
75
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^8.8.1",
|
|
76
78
|
"@typescript-eslint/parser": "^8.8.1",
|
|
77
79
|
"@vitest/coverage-v8": "^1.1.0",
|
|
78
80
|
"@vitest/ui": "^2.1.2",
|
|
79
81
|
"cspell": "^8.2.3",
|
|
80
82
|
"docsify-cli": "^4.3.0",
|
|
81
|
-
"eslint": "^
|
|
82
|
-
"eslint-
|
|
83
|
+
"eslint": "^9.13.0",
|
|
84
|
+
"eslint-import-resolver-typescript": "^3.6.3",
|
|
85
|
+
"eslint-plugin-functional": "^7.0.2",
|
|
83
86
|
"eslint-plugin-import": "^2.26.0",
|
|
84
87
|
"eslint-plugin-jsdoc": "^50.3.1",
|
|
85
88
|
"eslint-plugin-no-null": "^1.0.2",
|
|
86
89
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
87
90
|
"eslint-plugin-unicorn": "^56.0.0",
|
|
88
|
-
"execa": "^
|
|
91
|
+
"execa": "^9.4.0",
|
|
89
92
|
"glob": "^11.0.0",
|
|
90
|
-
"inquirer": "^
|
|
93
|
+
"inquirer": "^12.0.0",
|
|
94
|
+
"jiti": "^2.3.3",
|
|
91
95
|
"jsdom": "^25.0.1",
|
|
92
96
|
"pre-commit": "^1.2.2",
|
|
93
97
|
"prettier": "^3.1.1",
|
|
94
98
|
"tsconfig-paths": "^4.0.0",
|
|
95
99
|
"tsx": "^4.7.0",
|
|
96
|
-
"typedoc": "^0.
|
|
100
|
+
"typedoc": "^0.26.9",
|
|
97
101
|
"typescript": "5.3.3",
|
|
102
|
+
"typescript-eslint": "^8.10.0",
|
|
98
103
|
"unzipper": "^0.12.3",
|
|
99
104
|
"vite": "^5.0.10",
|
|
100
105
|
"vite-plugin-dts": "^4.2.4",
|
|
101
|
-
"vite-plugin-node-polyfills": "^0.
|
|
106
|
+
"vite-plugin-node-polyfills": "^0.22.0",
|
|
102
107
|
"vite-tsconfig-paths": "^5.0.1",
|
|
103
108
|
"vitest": "^1.1.0"
|
|
104
109
|
},
|