docx-plus 0.7.1 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +11 -5
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  ![npm downloads](https://img.shields.io/npm/dw/docx-plus)
5
5
  ![npm license](https://img.shields.io/npm/l/docx-plus)
6
6
 
7
- > Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
7
+ > Enhanced fork of docx backward-compatible re-export of @office-open/docx. Works in Node.js and browsers.
8
8
 
9
9
  **docx-plus** is an enhanced fork of [docx](https://github.com/dolanmiu/docx) by Dolan Miu — a TypeScript/JavaScript library for generating and modifying Word documents (.docx) programmatically with a declarative API. We extend our sincere gratitude to the original author and all contributors for their foundational work.
10
10
 
@@ -65,11 +65,17 @@ This package re-exports everything from `@office-open/docx` for backward compati
65
65
  ## Installation
66
66
 
67
67
  ```bash
68
- # Install with npm
69
- $ npm install docx-plus
68
+ # pnpm
69
+ pnpm add docx-plus
70
70
 
71
- # Install with pnpm
72
- $ pnpm add docx-plus
71
+ # npm
72
+ npm install docx-plus
73
+
74
+ # yarn
75
+ yarn add docx-plus
76
+
77
+ # bun
78
+ bun add docx-plus
73
79
  ```
74
80
 
75
81
  ## Quick Start
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docx-plus",
3
- "version": "0.7.1",
4
- "description": "Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.",
3
+ "version": "0.8.0",
4
+ "description": "Enhanced fork of docx backward-compatible re-export of @office-open/docx",
5
5
  "keywords": [
6
6
  "clippy",
7
7
  "create",
@@ -44,7 +44,7 @@
44
44
  }
45
45
  },
46
46
  "dependencies": {
47
- "@office-open/docx": "0.7.1"
47
+ "@office-open/docx": "0.8.0"
48
48
  },
49
49
  "scripts": {
50
50
  "dev": "basis build --stub",