@polyglot-bundles/my-minimal-pairs 0.3.3 → 0.3.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,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level0Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-0.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level1Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-1.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level2Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-2.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level3Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-3.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level4Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-4.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsMinimalPair } from '../../../content-shared';
1
+ import { MinimalPairsMinimalPair } from '@polyglot-bundles/content-shared';
2
2
  export declare const level5Pairs: MinimalPairsMinimalPair[];
3
3
  //# sourceMappingURL=level-5.d.ts.map
@@ -0,0 +1,419 @@
1
+ //#region src/levels.ts
2
+ var e = [
3
+ {
4
+ level: 0,
5
+ title: "Getting Started",
6
+ description: "Practice with clearly different sounds"
7
+ },
8
+ {
9
+ level: 1,
10
+ title: "Four Tones",
11
+ description: "The Burmese tonal system"
12
+ },
13
+ {
14
+ level: 2,
15
+ title: "Stop Consonants",
16
+ description: "Three-way stop contrast"
17
+ },
18
+ {
19
+ level: 3,
20
+ title: "Nasals and Sonorants",
21
+ description: "Voiceless nasals and contrasts"
22
+ },
23
+ {
24
+ level: 4,
25
+ title: "Vowels",
26
+ description: "Vowel quality contrasts"
27
+ },
28
+ {
29
+ level: 5,
30
+ title: "Expert Level",
31
+ description: "Tone sandhi and checked syllables"
32
+ }
33
+ ], t = {
34
+ tone_low_high: "Low tone: low and level (21). High tone: high and level (44). Creaky: high with creaky voice (53). Checked: short with final glottal stop.",
35
+ consonant_voicing: "Burmese has three-way contrast: voiced (ဂ), voiceless (က), and aspirated (ခ). The distinction is phonemic.",
36
+ consonant_voiceless_nasal: "Voiceless nasals (မှ, နှ, ငှ) are unique to Burmese. They're pronounced with a puff of air before the nasal sound.",
37
+ vowel_a_e: "/a/ is open central. /ɛ/ is open-mid front. Vowel quality is important for meaning."
38
+ }, n = [{
39
+ pairId: "my_l0_001",
40
+ level: 0,
41
+ tags: ["level_0"],
42
+ contrastFeature: "consonant",
43
+ contrastDescription: "/k/ vs /t/",
44
+ word1: {
45
+ script: "က",
46
+ romanization: "ka.",
47
+ definition: "to dance",
48
+ audioFile: null
49
+ },
50
+ word2: {
51
+ script: "တ",
52
+ romanization: "ta.",
53
+ definition: "to beat",
54
+ audioFile: null
55
+ }
56
+ }, {
57
+ pairId: "my_l0_002",
58
+ level: 0,
59
+ tags: ["level_0"],
60
+ contrastFeature: "consonant",
61
+ contrastDescription: "/m/ vs /n/",
62
+ word1: {
63
+ script: "မ",
64
+ romanization: "ma.",
65
+ definition: "girl",
66
+ audioFile: null
67
+ },
68
+ word2: {
69
+ script: "န",
70
+ romanization: "na.",
71
+ definition: "nose",
72
+ audioFile: null
73
+ }
74
+ }], r = [
75
+ {
76
+ pairId: "my_l1_001",
77
+ level: 1,
78
+ tags: ["level_1", "tone"],
79
+ contrastFeature: "tone",
80
+ contrastDescription: "Low tone vs high tone",
81
+ pronunciationTipId: "tone_low_high",
82
+ word1: {
83
+ script: "ခါ",
84
+ romanization: "khà",
85
+ definition: "to shake",
86
+ audioFile: null
87
+ },
88
+ word2: {
89
+ script: "ခါး",
90
+ romanization: "khá",
91
+ definition: "to be bitter; waist",
92
+ audioFile: null
93
+ }
94
+ },
95
+ {
96
+ pairId: "my_l1_002",
97
+ level: 1,
98
+ tags: ["level_1", "tone"],
99
+ contrastFeature: "tone",
100
+ contrastDescription: "Low tone vs creaky tone",
101
+ word1: {
102
+ script: "ခါ",
103
+ romanization: "khà",
104
+ definition: "to shake",
105
+ audioFile: null
106
+ },
107
+ word2: {
108
+ script: "ခါ့",
109
+ romanization: "kha̰",
110
+ definition: "(particle)",
111
+ audioFile: null
112
+ }
113
+ },
114
+ {
115
+ pairId: "my_l1_003",
116
+ level: 1,
117
+ tags: ["level_1", "tone"],
118
+ contrastFeature: "tone",
119
+ contrastDescription: "Low tone vs checked tone",
120
+ word1: {
121
+ script: "ခါ",
122
+ romanization: "khà",
123
+ definition: "to shake",
124
+ audioFile: null
125
+ },
126
+ word2: {
127
+ script: "ခတ်",
128
+ romanization: "khæʔ",
129
+ definition: "to wave",
130
+ audioFile: null
131
+ }
132
+ },
133
+ {
134
+ pairId: "my_l1_004",
135
+ level: 1,
136
+ tags: ["level_1", "tone"],
137
+ contrastFeature: "tone",
138
+ contrastDescription: "Four-way tone contrast on /kha/",
139
+ word1: {
140
+ script: "ခါ",
141
+ romanization: "khà",
142
+ definition: "to shake (low)",
143
+ audioFile: null
144
+ },
145
+ word2: {
146
+ script: "ခါး",
147
+ romanization: "khá",
148
+ definition: "bitter; waist (high)",
149
+ audioFile: null
150
+ },
151
+ notes: "Full series: ခါ (low), ခါး (high), ခါ့ (creaky), ခတ် (checked)"
152
+ }
153
+ ], i = [
154
+ {
155
+ pairId: "my_l2_001",
156
+ level: 2,
157
+ tags: ["level_2", "consonant"],
158
+ contrastFeature: "consonant",
159
+ contrastDescription: "Voiced /g/ vs voiceless /k/",
160
+ pronunciationTipId: "consonant_voicing",
161
+ word1: {
162
+ script: "ဂ",
163
+ romanization: "ga.",
164
+ definition: "(5th letter)",
165
+ audioFile: null
166
+ },
167
+ word2: {
168
+ script: "က",
169
+ romanization: "ka.",
170
+ definition: "to dance",
171
+ audioFile: null
172
+ }
173
+ },
174
+ {
175
+ pairId: "my_l2_002",
176
+ level: 2,
177
+ tags: ["level_2", "consonant"],
178
+ contrastFeature: "consonant",
179
+ contrastDescription: "Voiceless /k/ vs aspirated /kʰ/",
180
+ word1: {
181
+ script: "က",
182
+ romanization: "ka.",
183
+ definition: "to dance",
184
+ audioFile: null
185
+ },
186
+ word2: {
187
+ script: "ခ",
188
+ romanization: "kha.",
189
+ definition: "to be bitter",
190
+ audioFile: null
191
+ }
192
+ },
193
+ {
194
+ pairId: "my_l2_003",
195
+ level: 2,
196
+ tags: ["level_2", "consonant"],
197
+ contrastFeature: "consonant",
198
+ contrastDescription: "Voiced /b/ vs voiceless /p/",
199
+ word1: {
200
+ script: "ဗ",
201
+ romanization: "ba.",
202
+ definition: "(letter)",
203
+ audioFile: null
204
+ },
205
+ word2: {
206
+ script: "ပ",
207
+ romanization: "pa.",
208
+ definition: "to bloom",
209
+ audioFile: null
210
+ }
211
+ },
212
+ {
213
+ pairId: "my_l2_004",
214
+ level: 2,
215
+ tags: ["level_2", "consonant"],
216
+ contrastFeature: "consonant",
217
+ contrastDescription: "Voiceless /p/ vs aspirated /pʰ/",
218
+ word1: {
219
+ script: "ပ",
220
+ romanization: "pa.",
221
+ definition: "to bloom",
222
+ audioFile: null
223
+ },
224
+ word2: {
225
+ script: "ဖ",
226
+ romanization: "pha.",
227
+ definition: "to split",
228
+ audioFile: null
229
+ }
230
+ }
231
+ ], a = [
232
+ {
233
+ pairId: "my_l3_001",
234
+ level: 3,
235
+ tags: ["level_3", "consonant"],
236
+ contrastFeature: "consonant",
237
+ contrastDescription: "Voiced /m/ vs voiceless /m̥/",
238
+ pronunciationTipId: "consonant_voiceless_nasal",
239
+ word1: {
240
+ script: "မ",
241
+ romanization: "ma.",
242
+ definition: "girl",
243
+ audioFile: null
244
+ },
245
+ word2: {
246
+ script: "မှ",
247
+ romanization: "hma.",
248
+ definition: "(particle)",
249
+ audioFile: null
250
+ }
251
+ },
252
+ {
253
+ pairId: "my_l3_002",
254
+ level: 3,
255
+ tags: ["level_3", "consonant"],
256
+ contrastFeature: "consonant",
257
+ contrastDescription: "Voiced /n/ vs voiceless /n̥/",
258
+ word1: {
259
+ script: "န",
260
+ romanization: "na.",
261
+ definition: "nose",
262
+ audioFile: null
263
+ },
264
+ word2: {
265
+ script: "နှ",
266
+ romanization: "hna.",
267
+ definition: "two",
268
+ audioFile: null
269
+ }
270
+ },
271
+ {
272
+ pairId: "my_l3_003",
273
+ level: 3,
274
+ tags: ["level_3", "consonant"],
275
+ contrastFeature: "consonant",
276
+ contrastDescription: "Voiced /ŋ/ vs voiceless /ŋ̊/",
277
+ word1: {
278
+ script: "င",
279
+ romanization: "nga.",
280
+ definition: "I (informal)",
281
+ audioFile: null
282
+ },
283
+ word2: {
284
+ script: "ငှ",
285
+ romanization: "hnga.",
286
+ definition: "(to be salty)",
287
+ audioFile: null
288
+ }
289
+ },
290
+ {
291
+ pairId: "my_l3_004",
292
+ level: 3,
293
+ tags: ["level_3", "consonant"],
294
+ contrastFeature: "consonant",
295
+ contrastDescription: "Voiced /l/ vs voiceless /l̥/",
296
+ word1: {
297
+ script: "လ",
298
+ romanization: "la.",
299
+ definition: "moon",
300
+ audioFile: null
301
+ },
302
+ word2: {
303
+ script: "လှ",
304
+ romanization: "hla.",
305
+ definition: "beautiful",
306
+ audioFile: null
307
+ }
308
+ }
309
+ ], o = [
310
+ {
311
+ pairId: "my_l4_001",
312
+ level: 4,
313
+ tags: ["level_4", "vowel"],
314
+ contrastFeature: "vowel",
315
+ contrastDescription: "/a/ vs /ɛ/",
316
+ pronunciationTipId: "vowel_a_e",
317
+ word1: {
318
+ script: "က",
319
+ romanization: "ka.",
320
+ definition: "to dance",
321
+ audioFile: null
322
+ },
323
+ word2: {
324
+ script: "ကဲ",
325
+ romanization: "kɛ.",
326
+ definition: "(to exceed)",
327
+ audioFile: null
328
+ }
329
+ },
330
+ {
331
+ pairId: "my_l4_002",
332
+ level: 4,
333
+ tags: ["level_4", "vowel"],
334
+ contrastFeature: "vowel",
335
+ contrastDescription: "/i/ vs /u/",
336
+ word1: {
337
+ script: "ဆီ",
338
+ romanization: "si.",
339
+ definition: "oil",
340
+ audioFile: null
341
+ },
342
+ word2: {
343
+ script: "ဆူ",
344
+ romanization: "su.",
345
+ definition: "to boil",
346
+ audioFile: null
347
+ }
348
+ },
349
+ {
350
+ pairId: "my_l4_003",
351
+ level: 4,
352
+ tags: ["level_4", "vowel"],
353
+ contrastFeature: "vowel",
354
+ contrastDescription: "Oral vs nasal vowel",
355
+ word1: {
356
+ script: "ဆီ",
357
+ romanization: "si.",
358
+ definition: "oil",
359
+ audioFile: null
360
+ },
361
+ word2: {
362
+ script: "ဆိန်",
363
+ romanization: "sĩ",
364
+ definition: "(to be calm)",
365
+ audioFile: null
366
+ }
367
+ }
368
+ ], s = [{
369
+ pairId: "my_l5_001",
370
+ level: 5,
371
+ tags: ["level_5", "tone"],
372
+ contrastFeature: "tone",
373
+ contrastDescription: "Tone sandhi in compounds",
374
+ word1: {
375
+ script: "လ",
376
+ romanization: "la.",
377
+ definition: "moon",
378
+ audioFile: null
379
+ },
380
+ word2: {
381
+ script: "လပြည့်",
382
+ romanization: "la bje.",
383
+ definition: "full moon",
384
+ audioFile: null
385
+ },
386
+ notes: "Tones change in connected speech. The sandhi rules are complex but systematic."
387
+ }, {
388
+ pairId: "my_l5_002",
389
+ level: 5,
390
+ tags: ["level_5", "tone"],
391
+ contrastFeature: "tone",
392
+ contrastDescription: "Checked syllable (final -ʔ)",
393
+ word1: {
394
+ script: "ခတ်",
395
+ romanization: "khæʔ",
396
+ definition: "to wave",
397
+ audioFile: null
398
+ },
399
+ word2: {
400
+ script: "ခါး",
401
+ romanization: "khá",
402
+ definition: "bitter",
403
+ audioFile: null
404
+ },
405
+ notes: "Checked syllables end in -p, -t, -k, or -ʔ and have different tone patterns."
406
+ }], c = {
407
+ levels: e,
408
+ minimalPairs: [
409
+ ...n,
410
+ ...r,
411
+ ...i,
412
+ ...a,
413
+ ...o,
414
+ ...s
415
+ ],
416
+ pronunciationTips: t
417
+ };
418
+ //#endregion
419
+ export { i as a, t as c, a as i, e as l, s as n, r as o, o as r, n as s, c as t };
package/dist/data.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { MinimalPairsLanguageData } from '../../content-shared';
1
+ import { MinimalPairsLanguageData } from '@polyglot-bundles/content-shared';
2
2
  export declare const minimalPairsData: MinimalPairsLanguageData;
3
3
  export default minimalPairsData;
4
4
  //# sourceMappingURL=data.d.ts.map
package/dist/data.js CHANGED
@@ -1,226 +1,2 @@
1
- const i = [
2
- { level: 0, title: "Getting Started", description: "Practice with clearly different sounds" },
3
- { level: 1, title: "Four Tones", description: "The Burmese tonal system" },
4
- { level: 2, title: "Stop Consonants", description: "Three-way stop contrast" },
5
- { level: 3, title: "Nasals and Sonorants", description: "Voiceless nasals and contrasts" },
6
- { level: 4, title: "Vowels", description: "Vowel quality contrasts" },
7
- { level: 5, title: "Expert Level", description: "Tone sandhi and checked syllables" }
8
- ], o = {
9
- tone_low_high: "Low tone: low and level (21). High tone: high and level (44). Creaky: high with creaky voice (53). Checked: short with final glottal stop.",
10
- consonant_voicing: "Burmese has three-way contrast: voiced (ဂ), voiceless (က), and aspirated (ခ). The distinction is phonemic.",
11
- consonant_voiceless_nasal: "Voiceless nasals (မှ, နှ, ငှ) are unique to Burmese. They're pronounced with a puff of air before the nasal sound.",
12
- vowel_a_e: "/a/ is open central. /ɛ/ is open-mid front. Vowel quality is important for meaning."
13
- }, n = [
14
- // Level 0: Clear contrasts
15
- {
16
- pairId: "my_l0_001",
17
- level: 0,
18
- tags: ["level_0"],
19
- contrastFeature: "consonant",
20
- contrastDescription: "/k/ vs /t/",
21
- word1: { script: "က", romanization: "ka.", definition: "to dance", audioFile: null },
22
- word2: { script: "တ", romanization: "ta.", definition: "to beat", audioFile: null }
23
- },
24
- {
25
- pairId: "my_l0_002",
26
- level: 0,
27
- tags: ["level_0"],
28
- contrastFeature: "consonant",
29
- contrastDescription: "/m/ vs /n/",
30
- word1: { script: "မ", romanization: "ma.", definition: "girl", audioFile: null },
31
- word2: { script: "န", romanization: "na.", definition: "nose", audioFile: null }
32
- }
33
- ], e = [
34
- // Level 1: Four tones of Burmese
35
- {
36
- pairId: "my_l1_001",
37
- level: 1,
38
- tags: ["level_1", "tone"],
39
- contrastFeature: "tone",
40
- contrastDescription: "Low tone vs high tone",
41
- pronunciationTipId: "tone_low_high",
42
- word1: { script: "ခါ", romanization: "khà", definition: "to shake", audioFile: null },
43
- word2: { script: "ခါး", romanization: "khá", definition: "to be bitter; waist", audioFile: null }
44
- },
45
- {
46
- pairId: "my_l1_002",
47
- level: 1,
48
- tags: ["level_1", "tone"],
49
- contrastFeature: "tone",
50
- contrastDescription: "Low tone vs creaky tone",
51
- word1: { script: "ခါ", romanization: "khà", definition: "to shake", audioFile: null },
52
- word2: { script: "ခါ့", romanization: "kha̰", definition: "(particle)", audioFile: null }
53
- },
54
- {
55
- pairId: "my_l1_003",
56
- level: 1,
57
- tags: ["level_1", "tone"],
58
- contrastFeature: "tone",
59
- contrastDescription: "Low tone vs checked tone",
60
- word1: { script: "ခါ", romanization: "khà", definition: "to shake", audioFile: null },
61
- word2: { script: "ခတ်", romanization: "khæʔ", definition: "to wave", audioFile: null }
62
- },
63
- {
64
- pairId: "my_l1_004",
65
- level: 1,
66
- tags: ["level_1", "tone"],
67
- contrastFeature: "tone",
68
- contrastDescription: "Four-way tone contrast on /kha/",
69
- word1: { script: "ခါ", romanization: "khà", definition: "to shake (low)", audioFile: null },
70
- word2: { script: "ခါး", romanization: "khá", definition: "bitter; waist (high)", audioFile: null },
71
- notes: "Full series: ခါ (low), ခါး (high), ခါ့ (creaky), ခတ် (checked)"
72
- }
73
- ], t = [
74
- // Level 2: Three-way stop contrast
75
- {
76
- pairId: "my_l2_001",
77
- level: 2,
78
- tags: ["level_2", "consonant"],
79
- contrastFeature: "consonant",
80
- contrastDescription: "Voiced /g/ vs voiceless /k/",
81
- pronunciationTipId: "consonant_voicing",
82
- word1: { script: "ဂ", romanization: "ga.", definition: "(5th letter)", audioFile: null },
83
- word2: { script: "က", romanization: "ka.", definition: "to dance", audioFile: null }
84
- },
85
- {
86
- pairId: "my_l2_002",
87
- level: 2,
88
- tags: ["level_2", "consonant"],
89
- contrastFeature: "consonant",
90
- contrastDescription: "Voiceless /k/ vs aspirated /kʰ/",
91
- word1: { script: "က", romanization: "ka.", definition: "to dance", audioFile: null },
92
- word2: { script: "ခ", romanization: "kha.", definition: "to be bitter", audioFile: null }
93
- },
94
- {
95
- pairId: "my_l2_003",
96
- level: 2,
97
- tags: ["level_2", "consonant"],
98
- contrastFeature: "consonant",
99
- contrastDescription: "Voiced /b/ vs voiceless /p/",
100
- word1: { script: "ဗ", romanization: "ba.", definition: "(letter)", audioFile: null },
101
- word2: { script: "ပ", romanization: "pa.", definition: "to bloom", audioFile: null }
102
- },
103
- {
104
- pairId: "my_l2_004",
105
- level: 2,
106
- tags: ["level_2", "consonant"],
107
- contrastFeature: "consonant",
108
- contrastDescription: "Voiceless /p/ vs aspirated /pʰ/",
109
- word1: { script: "ပ", romanization: "pa.", definition: "to bloom", audioFile: null },
110
- word2: { script: "ဖ", romanization: "pha.", definition: "to split", audioFile: null }
111
- }
112
- ], a = [
113
- // Level 3: Voiceless nasals (unique to Burmese)
114
- {
115
- pairId: "my_l3_001",
116
- level: 3,
117
- tags: ["level_3", "consonant"],
118
- contrastFeature: "consonant",
119
- contrastDescription: "Voiced /m/ vs voiceless /m̥/",
120
- pronunciationTipId: "consonant_voiceless_nasal",
121
- word1: { script: "မ", romanization: "ma.", definition: "girl", audioFile: null },
122
- word2: { script: "မှ", romanization: "hma.", definition: "(particle)", audioFile: null }
123
- },
124
- {
125
- pairId: "my_l3_002",
126
- level: 3,
127
- tags: ["level_3", "consonant"],
128
- contrastFeature: "consonant",
129
- contrastDescription: "Voiced /n/ vs voiceless /n̥/",
130
- word1: { script: "န", romanization: "na.", definition: "nose", audioFile: null },
131
- word2: { script: "နှ", romanization: "hna.", definition: "two", audioFile: null }
132
- },
133
- {
134
- pairId: "my_l3_003",
135
- level: 3,
136
- tags: ["level_3", "consonant"],
137
- contrastFeature: "consonant",
138
- contrastDescription: "Voiced /ŋ/ vs voiceless /ŋ̊/",
139
- word1: { script: "င", romanization: "nga.", definition: "I (informal)", audioFile: null },
140
- word2: { script: "ငှ", romanization: "hnga.", definition: "(to be salty)", audioFile: null }
141
- },
142
- {
143
- pairId: "my_l3_004",
144
- level: 3,
145
- tags: ["level_3", "consonant"],
146
- contrastFeature: "consonant",
147
- contrastDescription: "Voiced /l/ vs voiceless /l̥/",
148
- word1: { script: "လ", romanization: "la.", definition: "moon", audioFile: null },
149
- word2: { script: "လှ", romanization: "hla.", definition: "beautiful", audioFile: null }
150
- }
151
- ], l = [
152
- // Level 4: Vowel contrasts
153
- {
154
- pairId: "my_l4_001",
155
- level: 4,
156
- tags: ["level_4", "vowel"],
157
- contrastFeature: "vowel",
158
- contrastDescription: "/a/ vs /ɛ/",
159
- pronunciationTipId: "vowel_a_e",
160
- word1: { script: "က", romanization: "ka.", definition: "to dance", audioFile: null },
161
- word2: { script: "ကဲ", romanization: "kɛ.", definition: "(to exceed)", audioFile: null }
162
- },
163
- {
164
- pairId: "my_l4_002",
165
- level: 4,
166
- tags: ["level_4", "vowel"],
167
- contrastFeature: "vowel",
168
- contrastDescription: "/i/ vs /u/",
169
- word1: { script: "ဆီ", romanization: "si.", definition: "oil", audioFile: null },
170
- word2: { script: "ဆူ", romanization: "su.", definition: "to boil", audioFile: null }
171
- },
172
- {
173
- pairId: "my_l4_003",
174
- level: 4,
175
- tags: ["level_4", "vowel"],
176
- contrastFeature: "vowel",
177
- contrastDescription: "Oral vs nasal vowel",
178
- word1: { script: "ဆီ", romanization: "si.", definition: "oil", audioFile: null },
179
- word2: { script: "ဆိန်", romanization: "sĩ", definition: "(to be calm)", audioFile: null }
180
- }
181
- ], s = [
182
- // Level 5: Expert - tone sandhi and checked syllables
183
- {
184
- pairId: "my_l5_001",
185
- level: 5,
186
- tags: ["level_5", "tone"],
187
- contrastFeature: "tone",
188
- contrastDescription: "Tone sandhi in compounds",
189
- word1: { script: "လ", romanization: "la.", definition: "moon", audioFile: null },
190
- word2: { script: "လပြည့်", romanization: "la bje.", definition: "full moon", audioFile: null },
191
- notes: "Tones change in connected speech. The sandhi rules are complex but systematic."
192
- },
193
- {
194
- pairId: "my_l5_002",
195
- level: 5,
196
- tags: ["level_5", "tone"],
197
- contrastFeature: "tone",
198
- contrastDescription: "Checked syllable (final -ʔ)",
199
- word1: { script: "ခတ်", romanization: "khæʔ", definition: "to wave", audioFile: null },
200
- word2: { script: "ခါး", romanization: "khá", definition: "bitter", audioFile: null },
201
- notes: "Checked syllables end in -p, -t, -k, or -ʔ and have different tone patterns."
202
- }
203
- ], r = [
204
- ...n,
205
- ...e,
206
- ...t,
207
- ...a,
208
- ...l,
209
- ...s
210
- ], c = {
211
- levels: i,
212
- minimalPairs: r,
213
- pronunciationTips: o
214
- };
215
- export {
216
- e as a,
217
- t as b,
218
- a as c,
219
- l as d,
220
- c as default,
221
- s as e,
222
- i as f,
223
- n as l,
224
- c as minimalPairsData,
225
- o as p
226
- };
1
+ import { t as e } from "./data-3seG7xv6.js";
2
+ export { e as default, e as minimalPairsData };
package/dist/index.d.ts CHANGED
@@ -7,5 +7,5 @@ export { level2Pairs } from './data/level-2';
7
7
  export { level3Pairs } from './data/level-3';
8
8
  export { level4Pairs } from './data/level-4';
9
9
  export { level5Pairs } from './data/level-5';
10
- export type { MinimalPairsLanguageData, MinimalPairsLevelInfo, MinimalPairsMinimalPair, MinimalPairsPronunciationTipsMap, MinimalPairsRubySegment, MinimalPairsWordInfo, } from '../../content-shared';
10
+ export type { MinimalPairsLanguageData, MinimalPairsLevelInfo, MinimalPairsMinimalPair, MinimalPairsPronunciationTipsMap, MinimalPairsRubySegment, MinimalPairsWordInfo, } from '@polyglot-bundles/content-shared';
11
11
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,12 +1,2 @@
1
- import { default as l, l as s, a as i, b as r, c as v, d as P, e as o, f as p, p as f } from "./data.js";
2
- export {
3
- l as default,
4
- s as level0Pairs,
5
- i as level1Pairs,
6
- r as level2Pairs,
7
- v as level3Pairs,
8
- P as level4Pairs,
9
- o as level5Pairs,
10
- p as levels,
11
- f as pronunciationTips
12
- };
1
+ import { a as e, c as t, i as n, l as r, n as i, o as a, r as o, s, t as c } from "./data-3seG7xv6.js";
2
+ export { c as default, s as level0Pairs, a as level1Pairs, e as level2Pairs, n as level3Pairs, o as level4Pairs, i as level5Pairs, r as levels, t as pronunciationTips };
package/dist/levels.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { MinimalPairsLevelInfo } from '../../content-shared';
1
+ import { MinimalPairsLevelInfo } from '@polyglot-bundles/content-shared';
2
2
  export declare const levels: MinimalPairsLevelInfo[];
3
3
  //# sourceMappingURL=levels.d.ts.map
@@ -1,3 +1,3 @@
1
- import { MinimalPairsPronunciationTipsMap } from '../../content-shared';
1
+ import { MinimalPairsPronunciationTipsMap } from '@polyglot-bundles/content-shared';
2
2
  export declare const pronunciationTips: MinimalPairsPronunciationTipsMap;
3
3
  //# sourceMappingURL=pronunciationTips.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-bundles/my-minimal-pairs",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -50,12 +50,13 @@
50
50
  "dist"
51
51
  ],
52
52
  "dependencies": {
53
- "@polyglot-bundles/content-shared": "0.4.1",
54
- "@polyglot-bundles/my-lang": "0.2.1"
53
+ "@polyglot-bundles/content-shared": "0.5.1",
54
+ "@polyglot-bundles/my-lang": "0.2.2"
55
55
  },
56
56
  "devDependencies": {
57
- "vite": "^5.4.0",
58
- "vite-plugin-dts": "^4.0.0"
57
+ "vite": "^8.0.8",
58
+ "vite-plugin-dts": "^4.5.4",
59
+ "@polyglot-bundles/lang-tooling": "0.0.0"
59
60
  },
60
61
  "publishConfig": {
61
62
  "access": "public"
@@ -66,7 +67,7 @@
66
67
  "directory": "packages/my/minimal-pairs"
67
68
  },
68
69
  "scripts": {
69
- "build": "vite build",
70
- "clean": "rm -rf dist"
70
+ "typecheck": "tsc --noEmit",
71
+ "build": "vite build"
71
72
  }
72
73
  }