@webjourney/vite-plugins 1.0.0 → 1.0.1

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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,12 +2,22 @@
2
2
 
3
3
  Vite plugins for Webjourney WYSIWYG editing functionality.
4
4
 
5
+ ## Requirements
6
+
7
+ - Vite 5.x, 6.x, or 7.x
8
+
5
9
  ## Installation
6
10
 
7
11
  ```bash
8
12
  yarn add @webjourney/vite-plugins
9
13
  ```
10
14
 
15
+ Or with npm:
16
+
17
+ ```bash
18
+ npm install @webjourney/vite-plugins
19
+ ```
20
+
11
21
  ## Usage
12
22
 
13
23
  In your `vite.config.ts`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webjourney/vite-plugins",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Vite plugins for Webjourney WYSIWYG editing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,6 +33,6 @@
33
33
  "vite": "^5.0.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "vite": "^5.0.0"
36
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
37
37
  }
38
38
  }