@polyglot-bundles/gu-lang 0.1.2 → 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,79 +1,496 @@
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: "r", charType: "vowel", ipa: "rɪ", name: "ઋ", length: "short" },
11
- { char: "અ", id: "a_short", charType: "vowel", ipa: "a", name: "અ (short)", length: "short" },
12
- { char: "ઇ", id: "i", charType: "vowel", ipa: "ɪ", name: "ઇ", length: "short" },
13
- { char: "ઉ", id: "u", charType: "vowel", ipa: "ʊ", name: "", length: "short" },
14
- // Long vowels
15
- { char: "આ", id: "aa", charType: "vowel", ipa: "aː", name: "આ", length: "long" },
16
- { char: "ઈ", id: "ii", charType: "vowel", ipa: "iː", name: "ઈ", length: "long" },
17
- { char: "", id: "uu", charType: "vowel", ipa: "uː", name: "ઊ", length: "long" },
18
- { char: "એ", id: "e", charType: "vowel", ipa: "ɛː", name: "એ", length: "long" },
19
- { char: "ઓ", id: "o", charType: "vowel", ipa: "ɔː", name: "ઓ", length: "long" },
20
- { char: "ઔ", id: "au", charType: "vowel", ipa: "ɔʊ", name: "ઔ", length: "short" },
21
- // Diphthongs
22
- { char: "ઐ", id: "ai", charType: "vowel", ipa: "ɛɪ", name: "ઐ", length: "short" },
23
- { char: "અા", id: "a_long_mark", charType: "vowel", ipa: "aː", name: "અા (length mark)", length: "long" }
24
- ], n = [
25
- // Velar consonants (કણ)
26
- { char: "ક", id: "ka", charType: "consonant", ipa: "k", name: "ક", voicing: "voiceless", articulation: "stop", place: "velar" },
27
- { char: "ખ", id: "kha", charType: "consonant", ipa: "kʰ", name: "ખ", voicing: "voiceless", articulation: "stop", place: "velar" },
28
- { char: "ગ", id: "ga", charType: "consonant", ipa: "ɡ", name: "ગ", voicing: "voiced", articulation: "stop", place: "velar" },
29
- { char: "ઘ", id: "gha", charType: "consonant", ipa: "ɡʰ", name: "ઘ", voicing: "voiced", articulation: "stop", place: "velar" },
30
- { char: "", id: "nga", charType: "consonant", ipa: "ŋ", name: "ઙ", voicing: "nasal", articulation: "nasal", place: "velar" },
31
- // Palatal consonants (ચણ)
32
- { char: "ચ", id: "cha", charType: "consonant", ipa: "tʃ", name: "ચ", voicing: "voiceless", articulation: "stop", place: "palatal" },
33
- { char: "", id: "chha", charType: "consonant", ipa: "tʃʰ", name: "છ", voicing: "voiceless", articulation: "stop", place: "palatal" },
34
- { char: "જ", id: "ja", charType: "consonant", ipa: "dʒ", name: "જ", voicing: "voiced", articulation: "stop", place: "palatal" },
35
- { char: "ઝ", id: "jha", charType: "consonant", ipa: "dʒʰ", name: "ઝ", voicing: "voiced", articulation: "stop", place: "palatal" },
36
- { char: "ઙ", id: "nya", charType: "consonant", ipa: "ɲ", name: "ઙ", voicing: "nasal", articulation: "nasal", place: "palatal" },
37
- // Retroflex consonants (ટણ)
38
- { char: "", id: "tta", charType: "consonant", ipa: "ʈ", name: "ટ", voicing: "voiceless", articulation: "stop", place: "retroflex" },
39
- { char: "ઠ", id: "ttha", charType: "consonant", ipa: "ʈʰ", name: "ઠ", voicing: "voiceless", articulation: "stop", place: "retroflex" },
40
- { char: "ડ", id: "dda", charType: "consonant", ipa: "ɖ", name: "ડ", voicing: "voiced", articulation: "stop", place: "retroflex" },
41
- { char: "", id: "ddha", charType: "consonant", ipa: "ɖʰ", name: "ઢ", voicing: "voiced", articulation: "stop", place: "retroflex" },
42
- { char: "ણ", id: "nna", charType: "consonant", ipa: "ɳ", name: "ણ", voicing: "nasal", articulation: "nasal", place: "retroflex" },
43
- // Dental consonants (તણ)
44
- { char: "ત", id: "ta", charType: "consonant", ipa: "t", name: "ત", voicing: "voiceless", articulation: "stop", place: "dental" },
45
- { char: "થ", id: "tha", charType: "consonant", ipa: "tʰ", name: "", voicing: "voiceless", articulation: "stop", place: "dental" },
46
- { char: "", id: "da", charType: "consonant", ipa: "d", name: "દ", voicing: "voiced", articulation: "stop", place: "dental" },
47
- { char: "ધ", id: "dha", charType: "consonant", ipa: "dʰ", name: "ધ", voicing: "voiced", articulation: "stop", place: "dental" },
48
- { char: "ન", id: "na", charType: "consonant", ipa: "n", name: "ન", voicing: "nasal", articulation: "nasal", place: "dental" },
49
- // Labial consonants (પણ)
50
- { char: "પ", id: "pa", charType: "consonant", ipa: "p", name: "પ", voicing: "voiceless", articulation: "stop", place: "labial" },
51
- { char: "ફ", id: "pha", charType: "consonant", ipa: "pʰ", name: "ફ", voicing: "voiceless", articulation: "stop", place: "labial" },
52
- { char: "બ", id: "ba", charType: "consonant", ipa: "b", name: "બ", voicing: "voiced", articulation: "stop", place: "labial" },
53
- { char: "ભ", id: "bha", charType: "consonant", ipa: "bʰ", name: "", voicing: "voiced", articulation: "stop", place: "labial" },
54
- { char: "", id: "ma", charType: "consonant", ipa: "m", name: "મ", voicing: "nasal", articulation: "nasal", place: "labial" },
55
- // Other consonants
56
- { char: "ય", id: "ya", charType: "consonant", ipa: "j", name: "ય", voicing: "approximant", articulation: "approximant", place: "palatal" },
57
- { char: "", id: "ra", charType: "consonant", ipa: "r", name: "ર", voicing: "trill", articulation: "trill", place: "retroflex" },
58
- { char: "લ", id: "la", charType: "consonant", ipa: "l", name: "લ", voicing: "lateral", articulation: "lateral", place: "dental" },
59
- { char: "વ", id: "va", charType: "consonant", ipa: "ʋ", name: "વ", voicing: "approximant", articulation: "approximant", place: "labial" },
60
- { char: "શ", id: "sha", charType: "consonant", ipa: "ʃ", name: "શ", voicing: "voiceless", articulation: "fricative", place: "palatal" },
61
- { char: "ષ", id: "ssa", charType: "consonant", ipa: "ʂ", name: "", voicing: "voiceless", articulation: "fricative", place: "retroflex" },
62
- { char: "", id: "sa", charType: "consonant", ipa: "s", name: "સ", voicing: "voiceless", articulation: "fricative", place: "dental" },
63
- { char: "હ", id: "ha", charType: "consonant", ipa: "h", name: "હ", voicing: "voiceless", articulation: "fricative", place: "glottal" },
64
- { char: "ળ", id: "lla", charType: "consonant", ipa: "ɭ", name: "ળ", voicing: "lateral", articulation: "lateral", place: "retroflex" },
65
- { char: "ક્ષ", id: "ksha", charType: "consonant", ipa: "kʃ", name: "ક્ષ", voicing: "voiceless", articulation: "stop", place: "velar" },
66
- { char: "જ્ઞ", id: "gya", charType: "consonant", ipa: "dʒɲ", name: "જ્ઞ", voicing: "voiced", articulation: "stop", place: "palatal" },
67
- { char: "ફ", id: "fa_foreign", charType: "consonant", ipa: "f", name: "ફ (foreign)", voicing: "voiceless", articulation: "fricative", place: "labial" },
68
- { char: "ઝ", id: "zha_foreign", charType: "consonant", ipa: "z", name: "ઝ (foreign)", voicing: "voiced", articulation: "fricative", place: "palatal" }
69
- ], o = [
70
- ...i,
71
- ...n
72
- ];
73
- export {
74
- o as gujaratiAllCharacters,
75
- n as gujaratiConsonants,
76
- i as gujaratiVowels,
77
- e as isConsonant,
78
- c as isVowel
79
- };
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: "r",
20
+ charType: "vowel",
21
+ ipa: "",
22
+ name: "ઋ",
23
+ length: "short"
24
+ },
25
+ {
26
+ char: "અ",
27
+ id: "a_short",
28
+ charType: "vowel",
29
+ ipa: "a",
30
+ name: " (short)",
31
+ length: "short"
32
+ },
33
+ {
34
+ char: "",
35
+ id: "i",
36
+ charType: "vowel",
37
+ ipa: "ɪ",
38
+ name: "ઇ",
39
+ length: "short"
40
+ },
41
+ {
42
+ char: "",
43
+ id: "u",
44
+ charType: "vowel",
45
+ ipa: "ʊ",
46
+ name: "",
47
+ length: "short"
48
+ },
49
+ {
50
+ char: "આ",
51
+ id: "aa",
52
+ charType: "vowel",
53
+ ipa: "",
54
+ name: "",
55
+ length: "long"
56
+ },
57
+ {
58
+ char: "",
59
+ id: "ii",
60
+ charType: "vowel",
61
+ ipa: "",
62
+ name: "",
63
+ length: "long"
64
+ },
65
+ {
66
+ char: "",
67
+ id: "uu",
68
+ charType: "vowel",
69
+ ipa: "",
70
+ name: "ઊ",
71
+ length: "long"
72
+ },
73
+ {
74
+ char: "એ",
75
+ id: "e",
76
+ charType: "vowel",
77
+ ipa: "ɛː",
78
+ name: "એ",
79
+ length: "long"
80
+ },
81
+ {
82
+ char: "ઓ",
83
+ id: "o",
84
+ charType: "vowel",
85
+ ipa: "ɔː",
86
+ name: "ઓ",
87
+ length: "long"
88
+ },
89
+ {
90
+ char: "ઔ",
91
+ id: "au",
92
+ charType: "vowel",
93
+ ipa: "ɔʊ",
94
+ name: "ઔ",
95
+ length: "short"
96
+ },
97
+ {
98
+ char: "ઐ",
99
+ id: "ai",
100
+ charType: "vowel",
101
+ ipa: "ɛɪ",
102
+ name: "ઐ",
103
+ length: "short"
104
+ },
105
+ {
106
+ char: "અા",
107
+ id: "a_long_mark",
108
+ charType: "vowel",
109
+ ipa: "aː",
110
+ name: "અા (length mark)",
111
+ length: "long"
112
+ }
113
+ ], r = [
114
+ {
115
+ char: "ક",
116
+ id: "ka",
117
+ charType: "consonant",
118
+ ipa: "k",
119
+ name: "ક",
120
+ voicing: "voiceless",
121
+ articulation: "stop",
122
+ place: "velar"
123
+ },
124
+ {
125
+ char: "ખ",
126
+ id: "kha",
127
+ charType: "consonant",
128
+ ipa: "kʰ",
129
+ name: "ખ",
130
+ voicing: "voiceless",
131
+ articulation: "stop",
132
+ place: "velar"
133
+ },
134
+ {
135
+ char: "ગ",
136
+ id: "ga",
137
+ charType: "consonant",
138
+ ipa: "ɡ",
139
+ name: "ગ",
140
+ voicing: "voiced",
141
+ articulation: "stop",
142
+ place: "velar"
143
+ },
144
+ {
145
+ char: "ઘ",
146
+ id: "gha",
147
+ charType: "consonant",
148
+ ipa: "ɡʰ",
149
+ name: "ઘ",
150
+ voicing: "voiced",
151
+ articulation: "stop",
152
+ place: "velar"
153
+ },
154
+ {
155
+ char: "ઙ",
156
+ id: "nga",
157
+ charType: "consonant",
158
+ ipa: "ŋ",
159
+ name: "ઙ",
160
+ voicing: "nasal",
161
+ articulation: "nasal",
162
+ place: "velar"
163
+ },
164
+ {
165
+ char: "ચ",
166
+ id: "cha",
167
+ charType: "consonant",
168
+ ipa: "tʃ",
169
+ name: "ચ",
170
+ voicing: "voiceless",
171
+ articulation: "stop",
172
+ place: "palatal"
173
+ },
174
+ {
175
+ char: "છ",
176
+ id: "chha",
177
+ charType: "consonant",
178
+ ipa: "tʃʰ",
179
+ name: "છ",
180
+ voicing: "voiceless",
181
+ articulation: "stop",
182
+ place: "palatal"
183
+ },
184
+ {
185
+ char: "જ",
186
+ id: "ja",
187
+ charType: "consonant",
188
+ ipa: "dʒ",
189
+ name: "જ",
190
+ voicing: "voiced",
191
+ articulation: "stop",
192
+ place: "palatal"
193
+ },
194
+ {
195
+ char: "ઝ",
196
+ id: "jha",
197
+ charType: "consonant",
198
+ ipa: "dʒʰ",
199
+ name: "ઝ",
200
+ voicing: "voiced",
201
+ articulation: "stop",
202
+ place: "palatal"
203
+ },
204
+ {
205
+ char: "ઙ",
206
+ id: "nya",
207
+ charType: "consonant",
208
+ ipa: "ɲ",
209
+ name: "ઙ",
210
+ voicing: "nasal",
211
+ articulation: "nasal",
212
+ place: "palatal"
213
+ },
214
+ {
215
+ char: "ટ",
216
+ id: "tta",
217
+ charType: "consonant",
218
+ ipa: "ʈ",
219
+ name: "ટ",
220
+ voicing: "voiceless",
221
+ articulation: "stop",
222
+ place: "retroflex"
223
+ },
224
+ {
225
+ char: "ઠ",
226
+ id: "ttha",
227
+ charType: "consonant",
228
+ ipa: "ʈʰ",
229
+ name: "ઠ",
230
+ voicing: "voiceless",
231
+ articulation: "stop",
232
+ place: "retroflex"
233
+ },
234
+ {
235
+ char: "ડ",
236
+ id: "dda",
237
+ charType: "consonant",
238
+ ipa: "ɖ",
239
+ name: "ડ",
240
+ voicing: "voiced",
241
+ articulation: "stop",
242
+ place: "retroflex"
243
+ },
244
+ {
245
+ char: "ઢ",
246
+ id: "ddha",
247
+ charType: "consonant",
248
+ ipa: "ɖʰ",
249
+ name: "ઢ",
250
+ voicing: "voiced",
251
+ articulation: "stop",
252
+ place: "retroflex"
253
+ },
254
+ {
255
+ char: "ણ",
256
+ id: "nna",
257
+ charType: "consonant",
258
+ ipa: "ɳ",
259
+ name: "ણ",
260
+ voicing: "nasal",
261
+ articulation: "nasal",
262
+ place: "retroflex"
263
+ },
264
+ {
265
+ char: "ત",
266
+ id: "ta",
267
+ charType: "consonant",
268
+ ipa: "t",
269
+ name: "ત",
270
+ voicing: "voiceless",
271
+ articulation: "stop",
272
+ place: "dental"
273
+ },
274
+ {
275
+ char: "થ",
276
+ id: "tha",
277
+ charType: "consonant",
278
+ ipa: "tʰ",
279
+ name: "થ",
280
+ voicing: "voiceless",
281
+ articulation: "stop",
282
+ place: "dental"
283
+ },
284
+ {
285
+ char: "દ",
286
+ id: "da",
287
+ charType: "consonant",
288
+ ipa: "d",
289
+ name: "દ",
290
+ voicing: "voiced",
291
+ articulation: "stop",
292
+ place: "dental"
293
+ },
294
+ {
295
+ char: "ધ",
296
+ id: "dha",
297
+ charType: "consonant",
298
+ ipa: "dʰ",
299
+ name: "ધ",
300
+ voicing: "voiced",
301
+ articulation: "stop",
302
+ place: "dental"
303
+ },
304
+ {
305
+ char: "ન",
306
+ id: "na",
307
+ charType: "consonant",
308
+ ipa: "n",
309
+ name: "ન",
310
+ voicing: "nasal",
311
+ articulation: "nasal",
312
+ place: "dental"
313
+ },
314
+ {
315
+ char: "પ",
316
+ id: "pa",
317
+ charType: "consonant",
318
+ ipa: "p",
319
+ name: "પ",
320
+ voicing: "voiceless",
321
+ articulation: "stop",
322
+ place: "labial"
323
+ },
324
+ {
325
+ char: "ફ",
326
+ id: "pha",
327
+ charType: "consonant",
328
+ ipa: "pʰ",
329
+ name: "ફ",
330
+ voicing: "voiceless",
331
+ articulation: "stop",
332
+ place: "labial"
333
+ },
334
+ {
335
+ char: "બ",
336
+ id: "ba",
337
+ charType: "consonant",
338
+ ipa: "b",
339
+ name: "બ",
340
+ voicing: "voiced",
341
+ articulation: "stop",
342
+ place: "labial"
343
+ },
344
+ {
345
+ char: "ભ",
346
+ id: "bha",
347
+ charType: "consonant",
348
+ ipa: "bʰ",
349
+ name: "ભ",
350
+ voicing: "voiced",
351
+ articulation: "stop",
352
+ place: "labial"
353
+ },
354
+ {
355
+ char: "મ",
356
+ id: "ma",
357
+ charType: "consonant",
358
+ ipa: "m",
359
+ name: "મ",
360
+ voicing: "nasal",
361
+ articulation: "nasal",
362
+ place: "labial"
363
+ },
364
+ {
365
+ char: "ય",
366
+ id: "ya",
367
+ charType: "consonant",
368
+ ipa: "j",
369
+ name: "ય",
370
+ voicing: "approximant",
371
+ articulation: "approximant",
372
+ place: "palatal"
373
+ },
374
+ {
375
+ char: "ર",
376
+ id: "ra",
377
+ charType: "consonant",
378
+ ipa: "r",
379
+ name: "ર",
380
+ voicing: "trill",
381
+ articulation: "trill",
382
+ place: "retroflex"
383
+ },
384
+ {
385
+ char: "લ",
386
+ id: "la",
387
+ charType: "consonant",
388
+ ipa: "l",
389
+ name: "લ",
390
+ voicing: "lateral",
391
+ articulation: "lateral",
392
+ place: "dental"
393
+ },
394
+ {
395
+ char: "વ",
396
+ id: "va",
397
+ charType: "consonant",
398
+ ipa: "ʋ",
399
+ name: "વ",
400
+ voicing: "approximant",
401
+ articulation: "approximant",
402
+ place: "labial"
403
+ },
404
+ {
405
+ char: "શ",
406
+ id: "sha",
407
+ charType: "consonant",
408
+ ipa: "ʃ",
409
+ name: "શ",
410
+ voicing: "voiceless",
411
+ articulation: "fricative",
412
+ place: "palatal"
413
+ },
414
+ {
415
+ char: "ષ",
416
+ id: "ssa",
417
+ charType: "consonant",
418
+ ipa: "ʂ",
419
+ name: "ષ",
420
+ voicing: "voiceless",
421
+ articulation: "fricative",
422
+ place: "retroflex"
423
+ },
424
+ {
425
+ char: "સ",
426
+ id: "sa",
427
+ charType: "consonant",
428
+ ipa: "s",
429
+ name: "સ",
430
+ voicing: "voiceless",
431
+ articulation: "fricative",
432
+ place: "dental"
433
+ },
434
+ {
435
+ char: "હ",
436
+ id: "ha",
437
+ charType: "consonant",
438
+ ipa: "h",
439
+ name: "હ",
440
+ voicing: "voiceless",
441
+ articulation: "fricative",
442
+ place: "glottal"
443
+ },
444
+ {
445
+ char: "ળ",
446
+ id: "lla",
447
+ charType: "consonant",
448
+ ipa: "ɭ",
449
+ name: "ળ",
450
+ voicing: "lateral",
451
+ articulation: "lateral",
452
+ place: "retroflex"
453
+ },
454
+ {
455
+ char: "ક્ષ",
456
+ id: "ksha",
457
+ charType: "consonant",
458
+ ipa: "kʃ",
459
+ name: "ક્ષ",
460
+ voicing: "voiceless",
461
+ articulation: "stop",
462
+ place: "velar"
463
+ },
464
+ {
465
+ char: "જ્ઞ",
466
+ id: "gya",
467
+ charType: "consonant",
468
+ ipa: "dʒɲ",
469
+ name: "જ્ઞ",
470
+ voicing: "voiced",
471
+ articulation: "stop",
472
+ place: "palatal"
473
+ },
474
+ {
475
+ char: "ફ",
476
+ id: "fa_foreign",
477
+ charType: "consonant",
478
+ ipa: "f",
479
+ name: "ફ (foreign)",
480
+ voicing: "voiceless",
481
+ articulation: "fricative",
482
+ place: "labial"
483
+ },
484
+ {
485
+ char: "ઝ",
486
+ id: "zha_foreign",
487
+ charType: "consonant",
488
+ ipa: "z",
489
+ name: "ઝ (foreign)",
490
+ voicing: "voiced",
491
+ articulation: "fricative",
492
+ place: "palatal"
493
+ }
494
+ ], i = [...n, ...r];
495
+ //#endregion
496
+ export { i as gujaratiAllCharacters, r as gujaratiConsonants, n as gujaratiVowels, t as isConsonant, e as isVowel };
package/dist/index.js CHANGED
@@ -1,8 +1,2 @@
1
- import { gujaratiAllCharacters as r, gujaratiConsonants as s, gujaratiVowels as t, isConsonant as n, isVowel as i } from "./characters.js";
2
- export {
3
- r as gujaratiAllCharacters,
4
- s as gujaratiConsonants,
5
- t as gujaratiVowels,
6
- n as isConsonant,
7
- i as isVowel
8
- };
1
+ import { gujaratiAllCharacters as e, gujaratiConsonants as t, gujaratiVowels as n, isConsonant as r, isVowel as i } from "./characters.js";
2
+ export { e as gujaratiAllCharacters, t as gujaratiConsonants, n as gujaratiVowels, r as isConsonant, i as isVowel };
@@ -42,3 +42,4 @@ export declare const gujaratiVowels: GujaratiVowelsInfo[];
42
42
  export declare const gujaratiConsonants: GujaratiConsonantsInfo[];
43
43
  export declare const gujaratiAllCharacters: (GujaratiVowelsInfo | GujaratiConsonantsInfo)[];
44
44
  export {};
45
+ //# sourceMappingURL=characters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"characters.d.ts","sourceRoot":"","sources":["../../../../../src/characters.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH;;GAEG;AACH,KAAK,yBAAyB,GAAG;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,EAAE,OAAO,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC3B,GAAG,yBAAyB,CAAC;AAE9B;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,WAAW,CAAC;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,GAAG,WAAW,GAAG,OAAO,GAAG,aAAa,GAAG,SAAS,GAAG,OAAO,CAAC;IACnF,OAAO,EAAE,QAAQ,GAAG,WAAW,GAAG,OAAO,GAAG,SAAS,GAAG,aAAa,GAAG,OAAO,GAAG,WAAW,CAAC;IAC9F,KAAK,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;CAC5E,GAAG,yBAAyB,CAAC;AAG9B,MAAM,MAAM,iBAAiB,GAAG,kBAAkB,GAAG,sBAAsB,CAAC;AAG5E,wBAAgB,OAAO,CAAC,SAAS,EAAE,iBAAiB,GAAG,SAAS,IAAI,kBAAkB,CAErF;AAED,wBAAgB,WAAW,CAAC,SAAS,EAAE,iBAAiB,GAAG,SAAS,IAAI,sBAAsB,CAE7F;AAMD,eAAO,MAAM,cAAc,EAAE,kBAAkB,EAiB9C,CAAC;AAMF,eAAO,MAAM,kBAAkB,EAAE,sBAAsB,EA6CtD,CAAC;AAMF,eAAO,MAAM,qBAAqB,iDAGjC,CAAC"}
@@ -1 +1,2 @@
1
1
  export { gujaratiVowels, gujaratiConsonants, gujaratiAllCharacters, type GujaratiVowelsInfo, type GujaratiConsonantsInfo, type GujaratiCharacter, isVowel, isConsonant, } from './characters.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,EACd,kBAAkB,EAClB,qBAAqB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EACtB,OAAO,EACP,WAAW,GACZ,MAAM,iBAAiB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-bundles/gu-lang",
3
- "version": "0.1.2",
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.3.2"
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/gu/lang"
31
29
  },
32
30
  "scripts": {
33
- "build": "vite build",
34
- "clean": "rm -rf dist"
31
+ "build": "vite build"
35
32
  }
36
33
  }