hunspell-reader 6.20.1 → 6.22.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.
- package/README.md +24 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -87,3 +87,27 @@ const promiseArrayOfWords = reader.readWords().toArray().toPromise();
|
|
|
87
87
|
## Reference
|
|
88
88
|
|
|
89
89
|
- [Hunspell Docs](https://github.com/hunspell/hunspell/blob/master/docs/hunspell.5.md)
|
|
90
|
+
|
|
91
|
+
## CSpell for Enterprise
|
|
92
|
+
|
|
93
|
+
<!--- @@inject: ../../static/tidelift.md --->
|
|
94
|
+
|
|
95
|
+
Available as part of the Tidelift Subscription.
|
|
96
|
+
|
|
97
|
+
The maintainers of cspell and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-cspell?utm_source=npm-cspell&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
|
|
98
|
+
|
|
99
|
+
<!--- @@inject-end: ../../static/tidelift.md --->
|
|
100
|
+
|
|
101
|
+
<!--- @@inject: ../../static/footer.md --->
|
|
102
|
+
|
|
103
|
+
<br/>
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
<p align="center">
|
|
108
|
+
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
|
|
109
|
+
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
|
|
110
|
+
</a>
|
|
111
|
+
</p>
|
|
112
|
+
|
|
113
|
+
<!--- @@inject-end: ../../static/footer.md --->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hunspell-reader",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.22.0",
|
|
4
4
|
"description": "A library for reading Hunspell Dictionary Files",
|
|
5
5
|
"bin": "bin.js",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"homepage": "https://github.com/Jason-Rev/hunspell-reader#readme",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/jest": "^29.4.0",
|
|
41
|
-
"@types/node": "^18.11.
|
|
41
|
+
"@types/node": "^18.11.19",
|
|
42
42
|
"jest": "^29.4.1",
|
|
43
43
|
"ts-jest": "^29.0.5",
|
|
44
44
|
"typescript": "^4.9.5"
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=14"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "a133874ed7590cbe140f5067cfa80db84b644a5d"
|
|
55
55
|
}
|