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