@gukhanmun/napi 0.2.0-dev.59 → 0.2.0-dev.94
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/dist/index.d.ts +8 -6
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* disambiguation, and the bundled *Standard Korean Language Dictionary*
|
|
19
19
|
* (標準國語大辭典). Corresponds to Rust `Preset::KoKr`.
|
|
20
20
|
* - `"ko-kp"` — North Korean orthography: no initial sound law (래일,
|
|
21
|
-
* 류행, 녀자), no bundled dictionary. Corresponds to Rust `Preset::KoKp`.
|
|
21
|
+
* 류행, 녀자), no bundled dictionary data. Corresponds to Rust `Preset::KoKp`.
|
|
22
22
|
*
|
|
23
23
|
* Both presets default `rendering` to `"hangul-only"` and `segmentation` to
|
|
24
24
|
* `"lattice"`. Individual options passed to {@link GukhanmunOptions} override
|
|
@@ -386,12 +386,14 @@ interface GukhanmunOptions {
|
|
|
386
386
|
/**
|
|
387
387
|
* Ordered list of dictionary sources. Sources are queried in order;
|
|
388
388
|
* earlier entries take precedence. When omitted (or empty), only the
|
|
389
|
-
* fallback Unihan character map is used (no
|
|
389
|
+
* fallback Unihan character map is used (no bundled dictionaries).
|
|
390
390
|
*
|
|
391
|
-
*
|
|
392
|
-
* automatically include
|
|
393
|
-
* Language Dictionary*, add `@gukhanmun/stdict-fst` or
|
|
394
|
-
* `@gukhanmun/stdict-cdb` explicitly.
|
|
391
|
+
* JavaScript presets do **not**
|
|
392
|
+
* automatically include bundled dictionary data. To use the *Standard
|
|
393
|
+
* Korean Language Dictionary*, add `@gukhanmun/stdict-fst` or
|
|
394
|
+
* `@gukhanmun/stdict-cdb` explicitly. To use Open Korean Dictionary
|
|
395
|
+
* categories, add `@gukhanmun/opendict-fst` or
|
|
396
|
+
* `@gukhanmun/opendict-cdb` explicitly.
|
|
395
397
|
*
|
|
396
398
|
* @see {@link DictionarySource}
|
|
397
399
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gukhanmun/napi",
|
|
3
|
-
"version": "0.2.0-dev.
|
|
3
|
+
"version": "0.2.0-dev.94",
|
|
4
4
|
"description": "Node.js native addon (napi-rs) for the Gukhanmun hanja-to-hangul converter.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@gukhanmun/napi-aarch64-apple-darwin": "0.2.0-dev.
|
|
18
|
-
"@gukhanmun/napi-x86_64-apple-darwin": "0.2.0-dev.
|
|
19
|
-
"@gukhanmun/napi-
|
|
20
|
-
"@gukhanmun/napi-aarch64-unknown-linux-gnu": "0.2.0-dev.
|
|
21
|
-
"@gukhanmun/napi-
|
|
22
|
-
"@gukhanmun/napi-x86_64-unknown-linux-gnu": "0.2.0-dev.
|
|
17
|
+
"@gukhanmun/napi-aarch64-apple-darwin": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821",
|
|
18
|
+
"@gukhanmun/napi-x86_64-apple-darwin": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821",
|
|
19
|
+
"@gukhanmun/napi-aarch64-pc-windows-msvc": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821",
|
|
20
|
+
"@gukhanmun/napi-aarch64-unknown-linux-gnu": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821",
|
|
21
|
+
"@gukhanmun/napi-x86_64-pc-windows-msvc": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821",
|
|
22
|
+
"@gukhanmun/napi-x86_64-unknown-linux-gnu": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://github.com/dahlia/gukhanmun",
|
|
25
25
|
"bugs": "https://github.com/dahlia/gukhanmun/issues",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@gukhanmun/types": "*"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@gukhanmun/types": "0.2.0-dev.
|
|
55
|
+
"@gukhanmun/types": "0.2.0-dev.94+f671d673ae64e9444c5b73aa2bc8cf0801536821"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsdown"
|