@polyglot-bundles/km-minimal-pairs 0.3.3 → 0.3.5

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,380 @@
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: "Consonant Registers",
11
+ description: "High vs low series consonants"
12
+ },
13
+ {
14
+ level: 2,
15
+ title: "Vowel Quality",
16
+ description: "Vowel contrasts from register"
17
+ },
18
+ {
19
+ level: 3,
20
+ title: "Stop Consonants",
21
+ description: "Voicing and aspiration contrasts"
22
+ },
23
+ {
24
+ level: 4,
25
+ title: "Final Consonants",
26
+ description: "Syllable-final contrasts"
27
+ },
28
+ {
29
+ level: 5,
30
+ title: "Expert Level",
31
+ description: "Subtle distinctions and dialectal variation"
32
+ }
33
+ ], t = {
34
+ consonant_register: "Khmer consonants come in two series: high (voiceless) and low (voiced). This affects the following vowel quality.",
35
+ vowel_register: "High series consonants produce 'brighter' vowels. Low series produce 'darker' vowels. The same written vowel sounds different based on consonant register.",
36
+ consonant_aspiration: "Aspirated consonants (ផ, ថ, ខ) have a strong puff of air. Unaspirated (ប, ត, ក) do not.",
37
+ final_consonants: "Final consonants are unreleased in Khmer. Stop finals (-p, -t, -c, -k) end abruptly without a release burst."
38
+ }, n = [{
39
+ pairId: "km_l0_001",
40
+ level: 0,
41
+ tags: ["level_0"],
42
+ contrastFeature: "consonant",
43
+ contrastDescription: "/k/ vs /t/",
44
+ word1: {
45
+ script: "ក",
46
+ romanization: "kɑɑ",
47
+ definition: "to be",
48
+ audioFile: null
49
+ },
50
+ word2: {
51
+ script: "ត",
52
+ romanization: "tɑɑ",
53
+ definition: "to be cheap",
54
+ audioFile: null
55
+ }
56
+ }, {
57
+ pairId: "km_l0_002",
58
+ level: 0,
59
+ tags: ["level_0"],
60
+ contrastFeature: "consonant",
61
+ contrastDescription: "/m/ vs /n/",
62
+ word1: {
63
+ script: "ម",
64
+ romanization: "mɔɔ",
65
+ definition: "come",
66
+ audioFile: null
67
+ },
68
+ word2: {
69
+ script: "ន",
70
+ romanization: "nɔɔ",
71
+ definition: "(particle)",
72
+ audioFile: null
73
+ }
74
+ }], r = [
75
+ {
76
+ pairId: "km_l1_001",
77
+ level: 1,
78
+ tags: ["level_1", "consonant"],
79
+ contrastFeature: "consonant",
80
+ contrastDescription: "High series /k/ vs low series /k/",
81
+ pronunciationTipId: "consonant_register",
82
+ word1: {
83
+ script: "កា",
84
+ romanization: "kie",
85
+ definition: "crow",
86
+ audioFile: null
87
+ },
88
+ word2: {
89
+ script: "ខា",
90
+ romanization: "kʰɑɑ",
91
+ definition: "side",
92
+ audioFile: null
93
+ }
94
+ },
95
+ {
96
+ pairId: "km_l1_002",
97
+ level: 1,
98
+ tags: ["level_1", "consonant"],
99
+ contrastFeature: "consonant",
100
+ contrastDescription: "High series /c/ vs low series /c/",
101
+ word1: {
102
+ script: "ចា",
103
+ romanization: "cie",
104
+ definition: "old",
105
+ audioFile: null
106
+ },
107
+ word2: {
108
+ script: "ឆា",
109
+ romanization: "chɑɑ",
110
+ definition: "to stir-fry",
111
+ audioFile: null
112
+ }
113
+ },
114
+ {
115
+ pairId: "km_l1_003",
116
+ level: 1,
117
+ tags: ["level_1", "consonant"],
118
+ contrastFeature: "consonant",
119
+ contrastDescription: "High series /p/ vs low series /p/",
120
+ word1: {
121
+ script: "បា",
122
+ romanization: "bie",
123
+ definition: "father",
124
+ audioFile: null
125
+ },
126
+ word2: {
127
+ script: "ផា",
128
+ romanization: "pʰɑɑ",
129
+ definition: "to sweep",
130
+ audioFile: null
131
+ }
132
+ },
133
+ {
134
+ pairId: "km_l1_004",
135
+ level: 1,
136
+ tags: ["level_1", "consonant"],
137
+ contrastFeature: "consonant",
138
+ contrastDescription: "High series /t/ vs low series /t/",
139
+ word1: {
140
+ script: "តា",
141
+ romanization: "tie",
142
+ definition: "grandfather",
143
+ audioFile: null
144
+ },
145
+ word2: {
146
+ script: "ថា",
147
+ romanization: "tʰii",
148
+ definition: "to say",
149
+ audioFile: null
150
+ }
151
+ }
152
+ ], i = [
153
+ {
154
+ pairId: "km_l2_001",
155
+ level: 2,
156
+ tags: ["level_2", "vowel"],
157
+ contrastFeature: "vowel",
158
+ contrastDescription: "/ɑɑ/ vs /iə/",
159
+ pronunciationTipId: "vowel_register",
160
+ word1: {
161
+ script: "កាន",
162
+ romanization: "kɑɑn",
163
+ definition: "to hold",
164
+ audioFile: null
165
+ },
166
+ word2: {
167
+ script: "គាន",
168
+ romanization: "kiən",
169
+ definition: "(to speak)",
170
+ audioFile: null
171
+ }
172
+ },
173
+ {
174
+ pairId: "km_l2_002",
175
+ level: 2,
176
+ tags: ["level_2", "vowel"],
177
+ contrastFeature: "vowel",
178
+ contrastDescription: "/ɔɔ/ vs /uə/",
179
+ word1: {
180
+ script: "បន",
181
+ romanization: "pɔɔn",
182
+ definition: "(servant)",
183
+ audioFile: null
184
+ },
185
+ word2: {
186
+ script: "ពន",
187
+ romanization: "puən",
188
+ definition: "(to increase)",
189
+ audioFile: null
190
+ }
191
+ },
192
+ {
193
+ pairId: "km_l2_003",
194
+ level: 2,
195
+ tags: ["level_2", "vowel"],
196
+ contrastFeature: "vowel",
197
+ contrastDescription: "/ɛɛ/ vs /ie/",
198
+ word1: {
199
+ script: "បែ",
200
+ romanization: "pɛɛ",
201
+ definition: "to break",
202
+ audioFile: null
203
+ },
204
+ word2: {
205
+ script: "ពែ",
206
+ romanization: "pie",
207
+ definition: "(to lend)",
208
+ audioFile: null
209
+ }
210
+ }
211
+ ], a = [
212
+ {
213
+ pairId: "km_l3_001",
214
+ level: 3,
215
+ tags: ["level_3", "consonant"],
216
+ contrastFeature: "consonant",
217
+ contrastDescription: "Unaspirated /p/ vs aspirated /pʰ/",
218
+ pronunciationTipId: "consonant_aspiration",
219
+ word1: {
220
+ script: "ប៉ា",
221
+ romanization: "pɑɑ",
222
+ definition: "father (colloquial)",
223
+ audioFile: null
224
+ },
225
+ word2: {
226
+ script: "ផា",
227
+ romanization: "pʰɑɑ",
228
+ definition: "to sweep",
229
+ audioFile: null
230
+ }
231
+ },
232
+ {
233
+ pairId: "km_l3_002",
234
+ level: 3,
235
+ tags: ["level_3", "consonant"],
236
+ contrastFeature: "consonant",
237
+ contrastDescription: "Unaspirated /t/ vs aspirated /tʰ/",
238
+ word1: {
239
+ script: "តា",
240
+ romanization: "tie",
241
+ definition: "grandfather",
242
+ audioFile: null
243
+ },
244
+ word2: {
245
+ script: "ថា",
246
+ romanization: "tʰii",
247
+ definition: "to say",
248
+ audioFile: null
249
+ }
250
+ },
251
+ {
252
+ pairId: "km_l3_003",
253
+ level: 3,
254
+ tags: ["level_3", "consonant"],
255
+ contrastFeature: "consonant",
256
+ contrastDescription: "Unaspirated /k/ vs aspirated /kʰ/",
257
+ word1: {
258
+ script: "កា",
259
+ romanization: "kie",
260
+ definition: "crow",
261
+ audioFile: null
262
+ },
263
+ word2: {
264
+ script: "ខា",
265
+ romanization: "kʰɑɑ",
266
+ definition: "side",
267
+ audioFile: null
268
+ }
269
+ }
270
+ ], o = [
271
+ {
272
+ pairId: "km_l4_001",
273
+ level: 4,
274
+ tags: ["level_4", "final"],
275
+ contrastFeature: "final_consonant",
276
+ contrastDescription: "Final /-n/ vs final /-ŋ/",
277
+ pronunciationTipId: "final_consonants",
278
+ word1: {
279
+ script: "បាន",
280
+ romanization: "baan",
281
+ definition: "to get; can",
282
+ audioFile: null
283
+ },
284
+ word2: {
285
+ script: "បាង",
286
+ romanization: "baaŋ",
287
+ definition: "(narrow)",
288
+ audioFile: null
289
+ }
290
+ },
291
+ {
292
+ pairId: "km_l4_002",
293
+ level: 4,
294
+ tags: ["level_4", "final"],
295
+ contrastFeature: "final_consonant",
296
+ contrastDescription: "Final /-m/ vs final /-n/",
297
+ word1: {
298
+ script: "ចម",
299
+ romanization: "cɑɑm",
300
+ definition: "(distance)",
301
+ audioFile: null
302
+ },
303
+ word2: {
304
+ script: "ចន",
305
+ romanization: "cɑɑn",
306
+ definition: "(Tuesday)",
307
+ audioFile: null
308
+ }
309
+ },
310
+ {
311
+ pairId: "km_l4_003",
312
+ level: 4,
313
+ tags: ["level_4", "final"],
314
+ contrastFeature: "final_consonant",
315
+ contrastDescription: "Final /-k/ vs final /-c/",
316
+ word1: {
317
+ script: "បាក",
318
+ romanization: "baak",
319
+ definition: "(fragment)",
320
+ audioFile: null
321
+ },
322
+ word2: {
323
+ script: "បាច",
324
+ romanization: "baac",
325
+ definition: "to scatter",
326
+ audioFile: null
327
+ }
328
+ }
329
+ ], s = [{
330
+ pairId: "km_l5_001",
331
+ level: 5,
332
+ tags: ["level_5", "vowel"],
333
+ contrastFeature: "vowel",
334
+ contrastDescription: "Long vs short vowel",
335
+ word1: {
336
+ script: "បាទ",
337
+ romanization: "baat",
338
+ definition: "yes (male)",
339
+ audioFile: null
340
+ },
341
+ word2: {
342
+ script: "បត់",
343
+ romanization: "bot",
344
+ definition: "to fold",
345
+ audioFile: null
346
+ },
347
+ notes: "Vowel length and quality interact in complex ways in Khmer."
348
+ }, {
349
+ pairId: "km_l5_002",
350
+ level: 5,
351
+ tags: ["level_5", "consonant"],
352
+ contrastFeature: "consonant",
353
+ contrastDescription: "Sesquisyllable reduction",
354
+ word1: {
355
+ script: "ក្បាល",
356
+ romanization: "kbaal",
357
+ definition: "head",
358
+ audioFile: null
359
+ },
360
+ word2: {
361
+ script: "កាល",
362
+ romanization: "kaal",
363
+ definition: "time",
364
+ audioFile: null
365
+ },
366
+ notes: "Khmer has sesquisyllables (1.5 syllables) with reduced minor syllables."
367
+ }], c = {
368
+ levels: e,
369
+ minimalPairs: [
370
+ ...n,
371
+ ...r,
372
+ ...i,
373
+ ...a,
374
+ ...o,
375
+ ...s
376
+ ],
377
+ pronunciationTips: t
378
+ };
379
+ //#endregion
380
+ 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,207 +1,2 @@
1
- const i = [
2
- { level: 0, title: "Getting Started", description: "Practice with clearly different sounds" },
3
- { level: 1, title: "Consonant Registers", description: "High vs low series consonants" },
4
- { level: 2, title: "Vowel Quality", description: "Vowel contrasts from register" },
5
- { level: 3, title: "Stop Consonants", description: "Voicing and aspiration contrasts" },
6
- { level: 4, title: "Final Consonants", description: "Syllable-final contrasts" },
7
- { level: 5, title: "Expert Level", description: "Subtle distinctions and dialectal variation" }
8
- ], n = {
9
- consonant_register: "Khmer consonants come in two series: high (voiceless) and low (voiced). This affects the following vowel quality.",
10
- vowel_register: "High series consonants produce 'brighter' vowels. Low series produce 'darker' vowels. The same written vowel sounds different based on consonant register.",
11
- consonant_aspiration: "Aspirated consonants (ផ, ថ, ខ) have a strong puff of air. Unaspirated (ប, ត, ក) do not.",
12
- final_consonants: "Final consonants are unreleased in Khmer. Stop finals (-p, -t, -c, -k) end abruptly without a release burst."
13
- }, o = [
14
- // Level 0: Clear contrasts
15
- {
16
- pairId: "km_l0_001",
17
- level: 0,
18
- tags: ["level_0"],
19
- contrastFeature: "consonant",
20
- contrastDescription: "/k/ vs /t/",
21
- word1: { script: "ក", romanization: "kɑɑ", definition: "to be", audioFile: null },
22
- word2: { script: "ត", romanization: "tɑɑ", definition: "to be cheap", audioFile: null }
23
- },
24
- {
25
- pairId: "km_l0_002",
26
- level: 0,
27
- tags: ["level_0"],
28
- contrastFeature: "consonant",
29
- contrastDescription: "/m/ vs /n/",
30
- word1: { script: "ម", romanization: "mɔɔ", definition: "come", audioFile: null },
31
- word2: { script: "ន", romanization: "nɔɔ", definition: "(particle)", audioFile: null }
32
- }
33
- ], t = [
34
- // Level 1: High vs low series consonants (the key Khmer feature)
35
- {
36
- pairId: "km_l1_001",
37
- level: 1,
38
- tags: ["level_1", "consonant"],
39
- contrastFeature: "consonant",
40
- contrastDescription: "High series /k/ vs low series /k/",
41
- pronunciationTipId: "consonant_register",
42
- word1: { script: "កា", romanization: "kie", definition: "crow", audioFile: null },
43
- word2: { script: "ខា", romanization: "kʰɑɑ", definition: "side", audioFile: null }
44
- },
45
- {
46
- pairId: "km_l1_002",
47
- level: 1,
48
- tags: ["level_1", "consonant"],
49
- contrastFeature: "consonant",
50
- contrastDescription: "High series /c/ vs low series /c/",
51
- word1: { script: "ចា", romanization: "cie", definition: "old", audioFile: null },
52
- word2: { script: "ឆា", romanization: "chɑɑ", definition: "to stir-fry", audioFile: null }
53
- },
54
- {
55
- pairId: "km_l1_003",
56
- level: 1,
57
- tags: ["level_1", "consonant"],
58
- contrastFeature: "consonant",
59
- contrastDescription: "High series /p/ vs low series /p/",
60
- word1: { script: "បា", romanization: "bie", definition: "father", audioFile: null },
61
- word2: { script: "ផា", romanization: "pʰɑɑ", definition: "to sweep", audioFile: null }
62
- },
63
- {
64
- pairId: "km_l1_004",
65
- level: 1,
66
- tags: ["level_1", "consonant"],
67
- contrastFeature: "consonant",
68
- contrastDescription: "High series /t/ vs low series /t/",
69
- word1: { script: "តា", romanization: "tie", definition: "grandfather", audioFile: null },
70
- word2: { script: "ថា", romanization: "tʰii", definition: "to say", audioFile: null }
71
- }
72
- ], e = [
73
- // Level 2: Vowel quality (derived from register)
74
- {
75
- pairId: "km_l2_001",
76
- level: 2,
77
- tags: ["level_2", "vowel"],
78
- contrastFeature: "vowel",
79
- contrastDescription: "/ɑɑ/ vs /iə/",
80
- pronunciationTipId: "vowel_register",
81
- word1: { script: "កាន", romanization: "kɑɑn", definition: "to hold", audioFile: null },
82
- word2: { script: "គាន", romanization: "kiən", definition: "(to speak)", audioFile: null }
83
- },
84
- {
85
- pairId: "km_l2_002",
86
- level: 2,
87
- tags: ["level_2", "vowel"],
88
- contrastFeature: "vowel",
89
- contrastDescription: "/ɔɔ/ vs /uə/",
90
- word1: { script: "បន", romanization: "pɔɔn", definition: "(servant)", audioFile: null },
91
- word2: { script: "ពន", romanization: "puən", definition: "(to increase)", audioFile: null }
92
- },
93
- {
94
- pairId: "km_l2_003",
95
- level: 2,
96
- tags: ["level_2", "vowel"],
97
- contrastFeature: "vowel",
98
- contrastDescription: "/ɛɛ/ vs /ie/",
99
- word1: { script: "បែ", romanization: "pɛɛ", definition: "to break", audioFile: null },
100
- word2: { script: "ពែ", romanization: "pie", definition: "(to lend)", audioFile: null }
101
- }
102
- ], a = [
103
- // Level 3: Stop consonants
104
- {
105
- pairId: "km_l3_001",
106
- level: 3,
107
- tags: ["level_3", "consonant"],
108
- contrastFeature: "consonant",
109
- contrastDescription: "Unaspirated /p/ vs aspirated /pʰ/",
110
- pronunciationTipId: "consonant_aspiration",
111
- word1: { script: "ប៉ា", romanization: "pɑɑ", definition: "father (colloquial)", audioFile: null },
112
- word2: { script: "ផា", romanization: "pʰɑɑ", definition: "to sweep", audioFile: null }
113
- },
114
- {
115
- pairId: "km_l3_002",
116
- level: 3,
117
- tags: ["level_3", "consonant"],
118
- contrastFeature: "consonant",
119
- contrastDescription: "Unaspirated /t/ vs aspirated /tʰ/",
120
- word1: { script: "តា", romanization: "tie", definition: "grandfather", audioFile: null },
121
- word2: { script: "ថា", romanization: "tʰii", definition: "to say", audioFile: null }
122
- },
123
- {
124
- pairId: "km_l3_003",
125
- level: 3,
126
- tags: ["level_3", "consonant"],
127
- contrastFeature: "consonant",
128
- contrastDescription: "Unaspirated /k/ vs aspirated /kʰ/",
129
- word1: { script: "កា", romanization: "kie", definition: "crow", audioFile: null },
130
- word2: { script: "ខា", romanization: "kʰɑɑ", definition: "side", audioFile: null }
131
- }
132
- ], l = [
133
- // Level 4: Final consonants
134
- {
135
- pairId: "km_l4_001",
136
- level: 4,
137
- tags: ["level_4", "final"],
138
- contrastFeature: "final_consonant",
139
- contrastDescription: "Final /-n/ vs final /-ŋ/",
140
- pronunciationTipId: "final_consonants",
141
- word1: { script: "បាន", romanization: "baan", definition: "to get; can", audioFile: null },
142
- word2: { script: "បាង", romanization: "baaŋ", definition: "(narrow)", audioFile: null }
143
- },
144
- {
145
- pairId: "km_l4_002",
146
- level: 4,
147
- tags: ["level_4", "final"],
148
- contrastFeature: "final_consonant",
149
- contrastDescription: "Final /-m/ vs final /-n/",
150
- word1: { script: "ចម", romanization: "cɑɑm", definition: "(distance)", audioFile: null },
151
- word2: { script: "ចន", romanization: "cɑɑn", definition: "(Tuesday)", audioFile: null }
152
- },
153
- {
154
- pairId: "km_l4_003",
155
- level: 4,
156
- tags: ["level_4", "final"],
157
- contrastFeature: "final_consonant",
158
- contrastDescription: "Final /-k/ vs final /-c/",
159
- word1: { script: "បាក", romanization: "baak", definition: "(fragment)", audioFile: null },
160
- word2: { script: "បាច", romanization: "baac", definition: "to scatter", audioFile: null }
161
- }
162
- ], s = [
163
- // Level 5: Expert - subtle distinctions
164
- {
165
- pairId: "km_l5_001",
166
- level: 5,
167
- tags: ["level_5", "vowel"],
168
- contrastFeature: "vowel",
169
- contrastDescription: "Long vs short vowel",
170
- word1: { script: "បាទ", romanization: "baat", definition: "yes (male)", audioFile: null },
171
- word2: { script: "បត់", romanization: "bot", definition: "to fold", audioFile: null },
172
- notes: "Vowel length and quality interact in complex ways in Khmer."
173
- },
174
- {
175
- pairId: "km_l5_002",
176
- level: 5,
177
- tags: ["level_5", "consonant"],
178
- contrastFeature: "consonant",
179
- contrastDescription: "Sesquisyllable reduction",
180
- word1: { script: "ក្បាល", romanization: "kbaal", definition: "head", audioFile: null },
181
- word2: { script: "កាល", romanization: "kaal", definition: "time", audioFile: null },
182
- notes: "Khmer has sesquisyllables (1.5 syllables) with reduced minor syllables."
183
- }
184
- ], r = [
185
- ...o,
186
- ...t,
187
- ...e,
188
- ...a,
189
- ...l,
190
- ...s
191
- ], c = {
192
- levels: i,
193
- minimalPairs: r,
194
- pronunciationTips: n
195
- };
196
- export {
197
- t as a,
198
- e as b,
199
- a as c,
200
- l as d,
201
- c as default,
202
- s as e,
203
- i as f,
204
- o as l,
205
- c as minimalPairsData,
206
- n as p
207
- };
1
+ import { t as e } from "./data-DFgvAGB4.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-DFgvAGB4.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/km-minimal-pairs",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -49,13 +49,12 @@
49
49
  "files": [
50
50
  "dist"
51
51
  ],
52
- "dependencies": {
53
- "@polyglot-bundles/content-shared": "0.4.1",
54
- "@polyglot-bundles/km-lang": "0.2.1"
55
- },
56
52
  "devDependencies": {
57
- "vite": "^5.4.0",
58
- "vite-plugin-dts": "^4.0.0"
53
+ "vite": "^8.0.8",
54
+ "vite-plugin-dts": "^4.5.4",
55
+ "@polyglot-bundles/lang-tooling": "0.0.0",
56
+ "@polyglot-bundles/content-shared": "0.5.3",
57
+ "@polyglot-bundles/km-lang": "0.2.3"
59
58
  },
60
59
  "publishConfig": {
61
60
  "access": "public"
@@ -66,7 +65,7 @@
66
65
  "directory": "packages/km/minimal-pairs"
67
66
  },
68
67
  "scripts": {
69
- "build": "vite build",
70
- "clean": "rm -rf dist"
68
+ "typecheck": "tsc --noEmit",
69
+ "build": "vite build"
71
70
  }
72
71
  }