@richhtmleditor/spellcheck 1.2.0 → 1.2.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 +2 -2
  2. package/package.json +17 -5
package/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  Real-time spell checking plugin for Rich HTML Editor. Adds a **Spellcheck** toolbar toggle that underlines misspelled words with suggestions popup on click. Built on [`@richhtmleditor/core`](https://www.npmjs.com/package/@richhtmleditor/core).
4
4
 
5
- **Current release: 1.2.0** — Depends on `@richhtmleditor/core` **^1.2.0**.
5
+ **Current release: 1.2.1** — Depends on `@richhtmleditor/core` **^1.2.1**.
6
6
 
7
7
  **Repository:** [github.com/rajkishorsahu89/richhtmleditor](https://github.com/rajkishorsahu89/richhtmleditor)
8
8
 
9
9
  **Demo:** [richhtmleditor.vercel.app](https://richhtmleditor.vercel.app/) — [demo](https://richhtmleditor.vercel.app/demo) · [guide](https://richhtmleditor.vercel.app/guide) · [API](https://richhtmleditor.vercel.app/api)
10
10
 
11
- ### What's in 1.2.0
11
+ ### What's in 1.2.1
12
12
 
13
13
  - **`createSpellcheckPlugin`** — registers the `spellcheck` toolbar tool
14
14
  - **Red underlines** — misspelled words highlighted in real time as you type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@richhtmleditor/spellcheck",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Spell & grammar check plugin for Rich HTML Editor (browser-native + LanguageTool API).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,10 @@
12
12
  "default": "./dist/index.js"
13
13
  }
14
14
  },
15
- "files": ["dist", "README.md"],
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
16
19
  "scripts": {
17
20
  "build": "tsc -p tsconfig.json",
18
21
  "prepack": "node ../../scripts/assert-pack-ready.mjs"
@@ -20,8 +23,17 @@
20
23
  "dependencies": {
21
24
  "@richhtmleditor/core": "^1.2.0"
22
25
  },
23
- "keywords": ["richhtmleditor", "spellcheck", "grammar", "languagetool"],
26
+ "keywords": [
27
+ "richhtmleditor",
28
+ "spellcheck",
29
+ "grammar",
30
+ "languagetool"
31
+ ],
24
32
  "license": "MIT",
25
- "publishConfig": { "access": "public" },
26
- "engines": { "node": ">=18" }
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "engines": {
37
+ "node": ">=18"
38
+ }
27
39
  }