@polyglot-bundles/kn-lang 0.1.3 → 0.1.4

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.
@@ -1,93 +1,616 @@
1
- function c(a) {
2
- return a.charType === "vowel";
1
+ //#region src/characters.ts
2
+ function e(e) {
3
+ return e.charType === "vowel";
3
4
  }
4
- function e(a) {
5
- return a.charType === "consonant";
5
+ function t(e) {
6
+ return e.charType === "consonant";
6
7
  }
7
- const i = [
8
- // Short vowels
9
- { char: "ಅ", id: "a", charType: "vowel", ipa: "ə", name: "ಅ", length: "short" },
10
- { char: "ಆ", id: "aa", charType: "vowel", ipa: "aː", name: "ಆ", length: "long" },
11
- { char: "ಇ", id: "i", charType: "vowel", ipa: "ɪ", name: "ಇ", length: "short" },
12
- { char: "ಈ", id: "ii", charType: "vowel", ipa: "", name: "ಈ", length: "long" },
13
- { char: "ಉ", id: "u", charType: "vowel", ipa: "ʊ", name: "", length: "short" },
14
- { char: "ಊ", id: "uu", charType: "vowel", ipa: "uː", name: "ಊ", length: "long" },
15
- { char: "ಋ", id: "r", charType: "vowel", ipa: "rɪ", name: "ಋ", length: "short" },
16
- { char: "ಎ", id: "e", charType: "vowel", ipa: "ɛ", name: "ಎ", length: "short" },
17
- { char: "", id: "ee", charType: "vowel", ipa: "eː", name: "ಏ", length: "long" },
18
- { char: "ಐ", id: "ai", charType: "vowel", ipa: "ai", name: "ಐ", length: "short" },
19
- { char: "ಒ", id: "o", charType: "vowel", ipa: "ɔ", name: "ಒ", length: "short" },
20
- { char: "ಓ", id: "oo", charType: "vowel", ipa: "", name: "ಓ", length: "long" },
21
- { char: "ಔ", id: "au", charType: "vowel", ipa: "au", name: "", length: "short" },
22
- // Vowel signs (matras)
23
- { char: "ಾ", id: "aa_matra", charType: "vowel", ipa: "aː", name: "ಾ (aa matra)", length: "long" },
24
- { char: "ಿ", id: "i_matra", charType: "vowel", ipa: "i", name: "ಿ (i matra)", length: "short" },
25
- { char: "", id: "ii_matra", charType: "vowel", ipa: "iː", name: "ೀ (ii matra)", length: "long" },
26
- { char: "ು", id: "u_matra", charType: "vowel", ipa: "u", name: "ು (u matra)", length: "short" },
27
- { char: "ೂ", id: "uu_matra", charType: "vowel", ipa: "uː", name: "ೂ (uu matra)", length: "long" },
28
- { char: "ೃ", id: "r_matra", charType: "vowel", ipa: "", name: "ೃ (r matra)", length: "short" },
29
- { char: "ೇ", id: "ee_matra", charType: "vowel", ipa: "eː", name: "ೇ (ee matra)", length: "long" },
30
- { char: "ೈ", id: "ai_matra", charType: "vowel", ipa: "ai", name: "ೈ (ai matra)", length: "short" },
31
- { char: "ೋ", id: "oo_matra", charType: "vowel", ipa: "oː", name: "ೋ (oo matra)", length: "long" },
32
- { char: "ೌ", id: "au_matra", charType: "vowel", ipa: "au", name: "ೌ (au matra)", length: "short" }
33
- ], n = [
34
- // Velar consonants (ಕಣ)
35
- { char: "ಕ", id: "ka", charType: "consonant", ipa: "k", name: "ಕ", voicing: "voiceless", articulation: "stop", place: "velar" },
36
- { char: "ಖ", id: "kha", charType: "consonant", ipa: "", name: "ಖ", voicing: "voiceless", articulation: "stop", place: "velar" },
37
- { char: "ಗ", id: "ga", charType: "consonant", ipa: "ɡ", name: "", voicing: "voiced", articulation: "stop", place: "velar" },
38
- { char: "", id: "gha", charType: "consonant", ipa: "ɡʰ", name: "ಘ", voicing: "voiced", articulation: "stop", place: "velar" },
39
- { char: "ಙ", id: "nga", charType: "consonant", ipa: "ŋ", name: "ಙ", voicing: "nasal", articulation: "nasal", place: "velar" },
40
- // Palatal consonants (ಚಣ)
41
- { char: "", id: "cha", charType: "consonant", ipa: "tʃ", name: "ಚ", voicing: "voiceless", articulation: "stop", place: "palatal" },
42
- { char: "ಛ", id: "chha", charType: "consonant", ipa: "tʃʰ", name: "ಛ", voicing: "voiceless", articulation: "stop", place: "palatal" },
43
- { char: "ಜ", id: "ja", charType: "consonant", ipa: "dʒ", name: "ಜ", voicing: "voiced", articulation: "stop", place: "palatal" },
44
- { char: "ಝ", id: "jha", charType: "consonant", ipa: "dʒʰ", name: "ಝ", voicing: "voiced", articulation: "stop", place: "palatal" },
45
- { char: "ಞ", id: "nya", charType: "consonant", ipa: "ɲ", name: "", voicing: "nasal", articulation: "nasal", place: "palatal" },
46
- // Retroflex consonants (ಟಣ)
47
- { char: "ಟ", id: "tta", charType: "consonant", ipa: "ʈ", name: "ಟ", voicing: "voiceless", articulation: "stop", place: "retroflex" },
48
- { char: "ಠ", id: "ttha", charType: "consonant", ipa: "ʈʰ", name: "ಠ", voicing: "voiceless", articulation: "stop", place: "retroflex" },
49
- { char: "", id: "dda", charType: "consonant", ipa: "ɖ", name: "ಡ", voicing: "voiced", articulation: "stop", place: "retroflex" },
50
- { char: "ಢ", id: "ddha", charType: "consonant", ipa: "ɖʰ", name: "ಢ", voicing: "voiced", articulation: "stop", place: "retroflex" },
51
- { char: "ಣ", id: "nna", charType: "consonant", ipa: "ɳ", name: "ಣ", voicing: "nasal", articulation: "nasal", place: "retroflex" },
52
- // Dental consonants (ತಣ)
53
- { char: "ತ", id: "ta", charType: "consonant", ipa: "t", name: "", voicing: "voiceless", articulation: "stop", place: "dental" },
54
- { char: "", id: "tha", charType: "consonant", ipa: "tʰ", name: "ಥ", voicing: "voiceless", articulation: "stop", place: "dental" },
55
- { char: "ದ", id: "da", charType: "consonant", ipa: "d", name: "ದ", voicing: "voiced", articulation: "stop", place: "dental" },
56
- { char: "ಧ", id: "dha", charType: "consonant", ipa: "dʰ", name: "ಧ", voicing: "voiced", articulation: "stop", place: "dental" },
57
- { char: "", id: "na", charType: "consonant", ipa: "n", name: "ನ", voicing: "nasal", articulation: "nasal", place: "dental" },
58
- // Labial consonants (ಪಣ)
59
- { char: "ಪ", id: "pa", charType: "consonant", ipa: "p", name: "ಪ", voicing: "voiceless", articulation: "stop", place: "labial" },
60
- { char: "ಫ", id: "pha", charType: "consonant", ipa: "", name: "ಫ", voicing: "voiceless", articulation: "stop", place: "labial" },
61
- { char: "ಬ", id: "ba", charType: "consonant", ipa: "b", name: "", voicing: "voiced", articulation: "stop", place: "labial" },
62
- { char: "", id: "bha", charType: "consonant", ipa: "bʰ", name: "ಭ", voicing: "voiced", articulation: "stop", place: "labial" },
63
- { char: "ಮ", id: "ma", charType: "consonant", ipa: "m", name: "ಮ", voicing: "nasal", articulation: "nasal", place: "labial" },
64
- // Other consonants
65
- { char: "", id: "ya", charType: "consonant", ipa: "j", name: "ಯ", voicing: "approximant", articulation: "approximant", place: "palatal" },
66
- { char: "ರ", id: "ra", charType: "consonant", ipa: "r", name: "ರ", voicing: "trill", articulation: "trill", place: "retroflex" },
67
- { char: "ಲ", id: "la", charType: "consonant", ipa: "l", name: "ಲ", voicing: "lateral", articulation: "lateral", place: "dental" },
68
- { char: "ವ", id: "va", charType: "consonant", ipa: "ʋ", name: "ವ", voicing: "approximant", articulation: "approximant", place: "labial" },
69
- { char: "ಷ", id: "ssa", charType: "consonant", ipa: "ʂ", name: "", voicing: "voiceless", articulation: "fricative", place: "retroflex" },
70
- { char: "", id: "sa", charType: "consonant", ipa: "s", name: "ಸ", voicing: "voiceless", articulation: "fricative", place: "dental" },
71
- { char: "ಹ", id: "ha", charType: "consonant", ipa: "h", name: "ಹ", voicing: "voiceless", articulation: "fricative", place: "glottal" },
72
- { char: "ಳ", id: "lla", charType: "consonant", ipa: "ɭ", name: "ಳ", voicing: "lateral", articulation: "lateral", place: "retroflex" },
73
- { char: "ಕ್ಷ", id: "ksha", charType: "consonant", ipa: "kʃ", name: "ಕ್ಷ", voicing: "voiceless", articulation: "stop", place: "velar" },
74
- { char: "ಜ್ಞ", id: "gya", charType: "consonant", ipa: "dʒɲ", name: "ಜ್ಞ", voicing: "voiced", articulation: "stop", place: "palatal" },
75
- { char: "ಶ", id: "sha_palatal", charType: "consonant", ipa: "ʃ", name: "ಶ", voicing: "voiceless", articulation: "fricative", place: "palatal" },
76
- { char: "ಱ", id: "rra", charType: "consonant", ipa: "ɽ", name: "ಱ", voicing: "trill", articulation: "trill", place: "retroflex" },
77
- { char: "ಙ್ಕ", id: "nga_ka", charType: "consonant", ipa: "ŋk", name: "ಙ್ಕ", voicing: "nasal", articulation: "stop", place: "velar" },
78
- // Modern additions (for loanwords)
79
- { char: "ಫ಼", id: "fa", charType: "consonant", ipa: "f", name: "ಫ಼", voicing: "voiceless", articulation: "fricative", place: "labial" },
80
- { char: "ಜ಼", id: "za", charType: "consonant", ipa: "z", name: "ಜ಼", voicing: "voiced", articulation: "fricative", place: "palatal" },
81
- { char: "ಖ಼", id: "kha_farsi", charType: "consonant", ipa: "x", name: "ಖ಼", voicing: "voiceless", articulation: "fricative", place: "velar" },
82
- { char: "ಗ಼", id: "gha_farsi", charType: "consonant", ipa: "ɣ", name: "ಗ಼", voicing: "voiced", articulation: "fricative", place: "velar" }
83
- ], o = [
84
- ...i,
85
- ...n
86
- ];
87
- export {
88
- e as isConsonant,
89
- c as isVowel,
90
- o as kannadaAllCharacters,
91
- n as kannadaConsonants,
92
- i as kannadaVowels
93
- };
8
+ var n = [
9
+ {
10
+ char: "ಅ",
11
+ id: "a",
12
+ charType: "vowel",
13
+ ipa: "ə",
14
+ name: "",
15
+ length: "short"
16
+ },
17
+ {
18
+ char: "",
19
+ id: "aa",
20
+ charType: "vowel",
21
+ ipa: "",
22
+ name: "",
23
+ length: "long"
24
+ },
25
+ {
26
+ char: "",
27
+ id: "i",
28
+ charType: "vowel",
29
+ ipa: "ɪ",
30
+ name: "",
31
+ length: "short"
32
+ },
33
+ {
34
+ char: "ಈ",
35
+ id: "ii",
36
+ charType: "vowel",
37
+ ipa: "",
38
+ name: "",
39
+ length: "long"
40
+ },
41
+ {
42
+ char: "",
43
+ id: "u",
44
+ charType: "vowel",
45
+ ipa: "ʊ",
46
+ name: "",
47
+ length: "short"
48
+ },
49
+ {
50
+ char: "",
51
+ id: "uu",
52
+ charType: "vowel",
53
+ ipa: "uː",
54
+ name: "",
55
+ length: "long"
56
+ },
57
+ {
58
+ char: "",
59
+ id: "r",
60
+ charType: "vowel",
61
+ ipa: "",
62
+ name: "",
63
+ length: "short"
64
+ },
65
+ {
66
+ char: "",
67
+ id: "e",
68
+ charType: "vowel",
69
+ ipa: "ɛ",
70
+ name: "",
71
+ length: "short"
72
+ },
73
+ {
74
+ char: "",
75
+ id: "ee",
76
+ charType: "vowel",
77
+ ipa: "",
78
+ name: "",
79
+ length: "long"
80
+ },
81
+ {
82
+ char: "",
83
+ id: "ai",
84
+ charType: "vowel",
85
+ ipa: "ai",
86
+ name: "ಐ",
87
+ length: "short"
88
+ },
89
+ {
90
+ char: "ಒ",
91
+ id: "o",
92
+ charType: "vowel",
93
+ ipa: "ɔ",
94
+ name: "ಒ",
95
+ length: "short"
96
+ },
97
+ {
98
+ char: "ಓ",
99
+ id: "oo",
100
+ charType: "vowel",
101
+ ipa: "oː",
102
+ name: "ಓ",
103
+ length: "long"
104
+ },
105
+ {
106
+ char: "ಔ",
107
+ id: "au",
108
+ charType: "vowel",
109
+ ipa: "au",
110
+ name: "ಔ",
111
+ length: "short"
112
+ },
113
+ {
114
+ char: "ಾ",
115
+ id: "aa_matra",
116
+ charType: "vowel",
117
+ ipa: "aː",
118
+ name: "ಾ (aa matra)",
119
+ length: "long"
120
+ },
121
+ {
122
+ char: "ಿ",
123
+ id: "i_matra",
124
+ charType: "vowel",
125
+ ipa: "i",
126
+ name: "ಿ (i matra)",
127
+ length: "short"
128
+ },
129
+ {
130
+ char: "ೀ",
131
+ id: "ii_matra",
132
+ charType: "vowel",
133
+ ipa: "iː",
134
+ name: "ೀ (ii matra)",
135
+ length: "long"
136
+ },
137
+ {
138
+ char: "ು",
139
+ id: "u_matra",
140
+ charType: "vowel",
141
+ ipa: "u",
142
+ name: "ು (u matra)",
143
+ length: "short"
144
+ },
145
+ {
146
+ char: "ೂ",
147
+ id: "uu_matra",
148
+ charType: "vowel",
149
+ ipa: "uː",
150
+ name: "ೂ (uu matra)",
151
+ length: "long"
152
+ },
153
+ {
154
+ char: "ೃ",
155
+ id: "r_matra",
156
+ charType: "vowel",
157
+ ipa: "rɪ",
158
+ name: "ೃ (r matra)",
159
+ length: "short"
160
+ },
161
+ {
162
+ char: "ೇ",
163
+ id: "ee_matra",
164
+ charType: "vowel",
165
+ ipa: "eː",
166
+ name: "ೇ (ee matra)",
167
+ length: "long"
168
+ },
169
+ {
170
+ char: "ೈ",
171
+ id: "ai_matra",
172
+ charType: "vowel",
173
+ ipa: "ai",
174
+ name: "ೈ (ai matra)",
175
+ length: "short"
176
+ },
177
+ {
178
+ char: "ೋ",
179
+ id: "oo_matra",
180
+ charType: "vowel",
181
+ ipa: "oː",
182
+ name: "ೋ (oo matra)",
183
+ length: "long"
184
+ },
185
+ {
186
+ char: "ೌ",
187
+ id: "au_matra",
188
+ charType: "vowel",
189
+ ipa: "au",
190
+ name: "ೌ (au matra)",
191
+ length: "short"
192
+ }
193
+ ], r = [
194
+ {
195
+ char: "ಕ",
196
+ id: "ka",
197
+ charType: "consonant",
198
+ ipa: "k",
199
+ name: "ಕ",
200
+ voicing: "voiceless",
201
+ articulation: "stop",
202
+ place: "velar"
203
+ },
204
+ {
205
+ char: "ಖ",
206
+ id: "kha",
207
+ charType: "consonant",
208
+ ipa: "kʰ",
209
+ name: "ಖ",
210
+ voicing: "voiceless",
211
+ articulation: "stop",
212
+ place: "velar"
213
+ },
214
+ {
215
+ char: "ಗ",
216
+ id: "ga",
217
+ charType: "consonant",
218
+ ipa: "ɡ",
219
+ name: "ಗ",
220
+ voicing: "voiced",
221
+ articulation: "stop",
222
+ place: "velar"
223
+ },
224
+ {
225
+ char: "ಘ",
226
+ id: "gha",
227
+ charType: "consonant",
228
+ ipa: "ɡʰ",
229
+ name: "ಘ",
230
+ voicing: "voiced",
231
+ articulation: "stop",
232
+ place: "velar"
233
+ },
234
+ {
235
+ char: "ಙ",
236
+ id: "nga",
237
+ charType: "consonant",
238
+ ipa: "ŋ",
239
+ name: "ಙ",
240
+ voicing: "nasal",
241
+ articulation: "nasal",
242
+ place: "velar"
243
+ },
244
+ {
245
+ char: "ಚ",
246
+ id: "cha",
247
+ charType: "consonant",
248
+ ipa: "tʃ",
249
+ name: "ಚ",
250
+ voicing: "voiceless",
251
+ articulation: "stop",
252
+ place: "palatal"
253
+ },
254
+ {
255
+ char: "ಛ",
256
+ id: "chha",
257
+ charType: "consonant",
258
+ ipa: "tʃʰ",
259
+ name: "ಛ",
260
+ voicing: "voiceless",
261
+ articulation: "stop",
262
+ place: "palatal"
263
+ },
264
+ {
265
+ char: "ಜ",
266
+ id: "ja",
267
+ charType: "consonant",
268
+ ipa: "dʒ",
269
+ name: "ಜ",
270
+ voicing: "voiced",
271
+ articulation: "stop",
272
+ place: "palatal"
273
+ },
274
+ {
275
+ char: "ಝ",
276
+ id: "jha",
277
+ charType: "consonant",
278
+ ipa: "dʒʰ",
279
+ name: "ಝ",
280
+ voicing: "voiced",
281
+ articulation: "stop",
282
+ place: "palatal"
283
+ },
284
+ {
285
+ char: "ಞ",
286
+ id: "nya",
287
+ charType: "consonant",
288
+ ipa: "ɲ",
289
+ name: "ಞ",
290
+ voicing: "nasal",
291
+ articulation: "nasal",
292
+ place: "palatal"
293
+ },
294
+ {
295
+ char: "ಟ",
296
+ id: "tta",
297
+ charType: "consonant",
298
+ ipa: "ʈ",
299
+ name: "ಟ",
300
+ voicing: "voiceless",
301
+ articulation: "stop",
302
+ place: "retroflex"
303
+ },
304
+ {
305
+ char: "ಠ",
306
+ id: "ttha",
307
+ charType: "consonant",
308
+ ipa: "ʈʰ",
309
+ name: "ಠ",
310
+ voicing: "voiceless",
311
+ articulation: "stop",
312
+ place: "retroflex"
313
+ },
314
+ {
315
+ char: "ಡ",
316
+ id: "dda",
317
+ charType: "consonant",
318
+ ipa: "ɖ",
319
+ name: "ಡ",
320
+ voicing: "voiced",
321
+ articulation: "stop",
322
+ place: "retroflex"
323
+ },
324
+ {
325
+ char: "ಢ",
326
+ id: "ddha",
327
+ charType: "consonant",
328
+ ipa: "ɖʰ",
329
+ name: "ಢ",
330
+ voicing: "voiced",
331
+ articulation: "stop",
332
+ place: "retroflex"
333
+ },
334
+ {
335
+ char: "ಣ",
336
+ id: "nna",
337
+ charType: "consonant",
338
+ ipa: "ɳ",
339
+ name: "ಣ",
340
+ voicing: "nasal",
341
+ articulation: "nasal",
342
+ place: "retroflex"
343
+ },
344
+ {
345
+ char: "ತ",
346
+ id: "ta",
347
+ charType: "consonant",
348
+ ipa: "t",
349
+ name: "ತ",
350
+ voicing: "voiceless",
351
+ articulation: "stop",
352
+ place: "dental"
353
+ },
354
+ {
355
+ char: "ಥ",
356
+ id: "tha",
357
+ charType: "consonant",
358
+ ipa: "tʰ",
359
+ name: "ಥ",
360
+ voicing: "voiceless",
361
+ articulation: "stop",
362
+ place: "dental"
363
+ },
364
+ {
365
+ char: "ದ",
366
+ id: "da",
367
+ charType: "consonant",
368
+ ipa: "d",
369
+ name: "ದ",
370
+ voicing: "voiced",
371
+ articulation: "stop",
372
+ place: "dental"
373
+ },
374
+ {
375
+ char: "ಧ",
376
+ id: "dha",
377
+ charType: "consonant",
378
+ ipa: "dʰ",
379
+ name: "ಧ",
380
+ voicing: "voiced",
381
+ articulation: "stop",
382
+ place: "dental"
383
+ },
384
+ {
385
+ char: "ನ",
386
+ id: "na",
387
+ charType: "consonant",
388
+ ipa: "n",
389
+ name: "ನ",
390
+ voicing: "nasal",
391
+ articulation: "nasal",
392
+ place: "dental"
393
+ },
394
+ {
395
+ char: "ಪ",
396
+ id: "pa",
397
+ charType: "consonant",
398
+ ipa: "p",
399
+ name: "ಪ",
400
+ voicing: "voiceless",
401
+ articulation: "stop",
402
+ place: "labial"
403
+ },
404
+ {
405
+ char: "ಫ",
406
+ id: "pha",
407
+ charType: "consonant",
408
+ ipa: "pʰ",
409
+ name: "ಫ",
410
+ voicing: "voiceless",
411
+ articulation: "stop",
412
+ place: "labial"
413
+ },
414
+ {
415
+ char: "ಬ",
416
+ id: "ba",
417
+ charType: "consonant",
418
+ ipa: "b",
419
+ name: "ಬ",
420
+ voicing: "voiced",
421
+ articulation: "stop",
422
+ place: "labial"
423
+ },
424
+ {
425
+ char: "ಭ",
426
+ id: "bha",
427
+ charType: "consonant",
428
+ ipa: "bʰ",
429
+ name: "ಭ",
430
+ voicing: "voiced",
431
+ articulation: "stop",
432
+ place: "labial"
433
+ },
434
+ {
435
+ char: "ಮ",
436
+ id: "ma",
437
+ charType: "consonant",
438
+ ipa: "m",
439
+ name: "ಮ",
440
+ voicing: "nasal",
441
+ articulation: "nasal",
442
+ place: "labial"
443
+ },
444
+ {
445
+ char: "ಯ",
446
+ id: "ya",
447
+ charType: "consonant",
448
+ ipa: "j",
449
+ name: "ಯ",
450
+ voicing: "approximant",
451
+ articulation: "approximant",
452
+ place: "palatal"
453
+ },
454
+ {
455
+ char: "ರ",
456
+ id: "ra",
457
+ charType: "consonant",
458
+ ipa: "r",
459
+ name: "ರ",
460
+ voicing: "trill",
461
+ articulation: "trill",
462
+ place: "retroflex"
463
+ },
464
+ {
465
+ char: "ಲ",
466
+ id: "la",
467
+ charType: "consonant",
468
+ ipa: "l",
469
+ name: "ಲ",
470
+ voicing: "lateral",
471
+ articulation: "lateral",
472
+ place: "dental"
473
+ },
474
+ {
475
+ char: "ವ",
476
+ id: "va",
477
+ charType: "consonant",
478
+ ipa: "ʋ",
479
+ name: "ವ",
480
+ voicing: "approximant",
481
+ articulation: "approximant",
482
+ place: "labial"
483
+ },
484
+ {
485
+ char: "ಷ",
486
+ id: "ssa",
487
+ charType: "consonant",
488
+ ipa: "ʂ",
489
+ name: "ಷ",
490
+ voicing: "voiceless",
491
+ articulation: "fricative",
492
+ place: "retroflex"
493
+ },
494
+ {
495
+ char: "ಸ",
496
+ id: "sa",
497
+ charType: "consonant",
498
+ ipa: "s",
499
+ name: "ಸ",
500
+ voicing: "voiceless",
501
+ articulation: "fricative",
502
+ place: "dental"
503
+ },
504
+ {
505
+ char: "ಹ",
506
+ id: "ha",
507
+ charType: "consonant",
508
+ ipa: "h",
509
+ name: "ಹ",
510
+ voicing: "voiceless",
511
+ articulation: "fricative",
512
+ place: "glottal"
513
+ },
514
+ {
515
+ char: "ಳ",
516
+ id: "lla",
517
+ charType: "consonant",
518
+ ipa: "ɭ",
519
+ name: "ಳ",
520
+ voicing: "lateral",
521
+ articulation: "lateral",
522
+ place: "retroflex"
523
+ },
524
+ {
525
+ char: "ಕ್ಷ",
526
+ id: "ksha",
527
+ charType: "consonant",
528
+ ipa: "kʃ",
529
+ name: "ಕ್ಷ",
530
+ voicing: "voiceless",
531
+ articulation: "stop",
532
+ place: "velar"
533
+ },
534
+ {
535
+ char: "ಜ್ಞ",
536
+ id: "gya",
537
+ charType: "consonant",
538
+ ipa: "dʒɲ",
539
+ name: "ಜ್ಞ",
540
+ voicing: "voiced",
541
+ articulation: "stop",
542
+ place: "palatal"
543
+ },
544
+ {
545
+ char: "ಶ",
546
+ id: "sha_palatal",
547
+ charType: "consonant",
548
+ ipa: "ʃ",
549
+ name: "ಶ",
550
+ voicing: "voiceless",
551
+ articulation: "fricative",
552
+ place: "palatal"
553
+ },
554
+ {
555
+ char: "ಱ",
556
+ id: "rra",
557
+ charType: "consonant",
558
+ ipa: "ɽ",
559
+ name: "ಱ",
560
+ voicing: "trill",
561
+ articulation: "trill",
562
+ place: "retroflex"
563
+ },
564
+ {
565
+ char: "ಙ್ಕ",
566
+ id: "nga_ka",
567
+ charType: "consonant",
568
+ ipa: "ŋk",
569
+ name: "ಙ್ಕ",
570
+ voicing: "nasal",
571
+ articulation: "stop",
572
+ place: "velar"
573
+ },
574
+ {
575
+ char: "ಫ಼",
576
+ id: "fa",
577
+ charType: "consonant",
578
+ ipa: "f",
579
+ name: "ಫ಼",
580
+ voicing: "voiceless",
581
+ articulation: "fricative",
582
+ place: "labial"
583
+ },
584
+ {
585
+ char: "ಜ಼",
586
+ id: "za",
587
+ charType: "consonant",
588
+ ipa: "z",
589
+ name: "ಜ಼",
590
+ voicing: "voiced",
591
+ articulation: "fricative",
592
+ place: "palatal"
593
+ },
594
+ {
595
+ char: "ಖ಼",
596
+ id: "kha_farsi",
597
+ charType: "consonant",
598
+ ipa: "x",
599
+ name: "ಖ಼",
600
+ voicing: "voiceless",
601
+ articulation: "fricative",
602
+ place: "velar"
603
+ },
604
+ {
605
+ char: "ಗ಼",
606
+ id: "gha_farsi",
607
+ charType: "consonant",
608
+ ipa: "ɣ",
609
+ name: "ಗ಼",
610
+ voicing: "voiced",
611
+ articulation: "fricative",
612
+ place: "velar"
613
+ }
614
+ ], i = [...n, ...r];
615
+ //#endregion
616
+ export { t as isConsonant, e as isVowel, i as kannadaAllCharacters, r as kannadaConsonants, n as kannadaVowels };
package/dist/index.js CHANGED
@@ -1,8 +1,2 @@
1
- import { isConsonant as o, isVowel as s, kannadaAllCharacters as e, kannadaConsonants as l, kannadaVowels as r } from "./characters.js";
2
- export {
3
- o as isConsonant,
4
- s as isVowel,
5
- e as kannadaAllCharacters,
6
- l as kannadaConsonants,
7
- r as kannadaVowels
8
- };
1
+ import { isConsonant as e, isVowel as t, kannadaAllCharacters as n, kannadaConsonants as r, kannadaVowels as i } from "./characters.js";
2
+ export { e as isConsonant, t as isVowel, n as kannadaAllCharacters, r as kannadaConsonants, i as kannadaVowels };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-bundles/kn-lang",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,12 +17,10 @@
17
17
  "access": "public"
18
18
  },
19
19
  "dependencies": {
20
- "@polyglot-bundles/content-shared": "0.4.1"
20
+ "@polyglot-bundles/content-shared": "0.5.1"
21
21
  },
22
22
  "devDependencies": {
23
- "vite": "^5.4.0",
24
- "vite-plugin-dts": "^4.0.0",
25
- "@polyglot-bundles/lang-tooling": "1.0.0"
23
+ "@polyglot-bundles/lang-tooling": "0.0.0"
26
24
  },
27
25
  "repository": {
28
26
  "type": "git",
@@ -30,7 +28,6 @@
30
28
  "directory": "packages/kn/lang"
31
29
  },
32
30
  "scripts": {
33
- "build": "vite build",
34
- "clean": "rm -rf dist"
31
+ "build": "vite build"
35
32
  }
36
33
  }