office-open 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 +10 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -17,11 +17,17 @@
17
17
  ## Installation
18
18
 
19
19
  ```bash
20
- # Install with npm
21
- $ npm install office-open
20
+ # pnpm
21
+ pnpm add office-open
22
22
 
23
- # Install with pnpm
24
- $ pnpm add office-open
23
+ # npm
24
+ npm install office-open
25
+
26
+ # yarn
27
+ yarn add office-open
28
+
29
+ # bun
30
+ bun add office-open
25
31
  ```
26
32
 
27
33
  ## Quick Start
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "office-open",
3
- "version": "0.7.1",
4
- "description": "Generate Office files (.docx, .pptx, .xlsx) from JSON — CLI, AI SDK tools, and unified re-exports",
3
+ "version": "0.8.0",
4
+ "description": "Unified Office document toolkit — CLI, AI SDK tools, Zod schemas, and all packages in one install",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "cli",
@@ -77,11 +77,11 @@
77
77
  "dependencies": {
78
78
  "citty": "0.2.2",
79
79
  "zod": "4.4.3",
80
- "@office-open/core": "0.7.1",
81
- "@office-open/docx": "0.7.1",
82
- "@office-open/pptx": "0.7.1",
83
- "@office-open/xml": "0.7.1",
84
- "@office-open/xlsx": "0.7.1"
80
+ "@office-open/core": "0.8.0",
81
+ "@office-open/pptx": "0.8.0",
82
+ "@office-open/xlsx": "0.8.0",
83
+ "@office-open/docx": "0.8.0",
84
+ "@office-open/xml": "0.8.0"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "ai": "^6.0.0"