docx 8.2.2 → 8.2.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/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "docx",
3
- "version": "8.2.2",
3
+ "version": "8.2.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",
7
- "module": "./build/index.js",
7
+ "module": "./build/index.mjs",
8
8
  "types": "./build/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
11
  "require": "./build/index.cjs",
12
12
  "types": "./build/index.d.ts",
13
- "import": "./build/index.js",
14
- "default": "./build/index.js"
13
+ "import": "./build/index.mjs",
14
+ "default": "./build/index.mjs"
15
15
  }
16
16
  },
17
17
  "files": [
@@ -90,7 +90,7 @@
90
90
  "inquirer": "^9.2.7",
91
91
  "jsdom": "^22.1.0",
92
92
  "pre-commit": "^1.2.2",
93
- "prettier": "^2.3.1",
93
+ "prettier": "^3.0.0",
94
94
  "ts-node": "^10.2.1",
95
95
  "tsconfig-paths": "^4.0.0",
96
96
  "typedoc": "^0.24.8",
File without changes