@domternal/vue 1.0.1 → 1.0.2

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 +1 -1
  2. package/package.json +16 -11
package/README.md CHANGED
@@ -19,7 +19,7 @@ editor is created in `onMounted`. Requires Vue 3.3+ and the Composition API.
19
19
  pnpm add @domternal/vue @domternal/core @domternal/theme vue
20
20
  ```
21
21
 
22
- `vue` (>=3.3) and `@domternal/core` (>=1.0.0) are peer dependencies. `@domternal/theme`
22
+ `vue` (>=3.3) and `@domternal/core` (>=1.0.0 <2.0.0) are peer dependencies. `@domternal/theme`
23
23
  supplies the editor styles.
24
24
 
25
25
  ## Usage
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@domternal/vue",
3
- "version": "1.0.1",
4
- "description": "Vue 3 components for Domternal editor",
3
+ "version": "1.0.2",
4
+ "description": "MIT-licensed Vue 3 components for the Domternal rich text editor",
5
5
  "author": "https://github.com/ThomasNowHere",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -21,15 +21,26 @@
21
21
  "dist"
22
22
  ],
23
23
  "peerDependencies": {
24
- "@domternal/core": ">=1.0.0",
24
+ "@domternal/core": ">=1.0.0 <2.0.0",
25
25
  "vue": ">=3.3"
26
26
  },
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "dev": "tsup --watch",
30
+ "lint": "eslint src",
31
+ "typecheck": "tsc --noEmit",
32
+ "prepublishOnly": "pnpm build && node ../../scripts/prepare-publish-manifest.mjs",
33
+ "postpublish": "git checkout package.json"
34
+ },
27
35
  "keywords": [
28
36
  "vue",
29
37
  "vue3",
30
38
  "prosemirror",
31
39
  "editor",
32
40
  "rich-text",
41
+ "rich-text-editor",
42
+ "wysiwyg",
43
+ "typescript",
33
44
  "domternal"
34
45
  ],
35
46
  "repository": {
@@ -40,11 +51,5 @@
40
51
  "bugs": {
41
52
  "url": "https://github.com/domternal/domternal/issues"
42
53
  },
43
- "homepage": "https://domternal.dev",
44
- "scripts": {
45
- "build": "tsup",
46
- "dev": "tsup --watch",
47
- "lint": "eslint src",
48
- "typecheck": "tsc --noEmit"
49
- }
50
- }
54
+ "homepage": "https://domternal.dev"
55
+ }