@syllst/ko 0.1.1

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.
Files changed (52) hide show
  1. package/dist/index.d.ts +80 -0
  2. package/dist/index.js +30 -0
  3. package/dist/shared.js +26 -0
  4. package/dist/syllabi/alphabet/index.d.ts +7 -0
  5. package/dist/syllabi/alphabet/index.js +47 -0
  6. package/dist/syllabi/alphabet/lessons/lesson-01.mdx.js +154 -0
  7. package/dist/syllabi/alphabet/lessons/lesson-02.mdx.js +169 -0
  8. package/dist/syllabi/alphabet/lessons/lesson-03.mdx.js +164 -0
  9. package/dist/syllabi/alphabet/lessons/lesson-04.mdx.js +154 -0
  10. package/dist/syllabi/alphabet/lessons/lesson-05.mdx.js +147 -0
  11. package/dist/syllabi/alphabet/lessons/lesson-06.mdx.js +169 -0
  12. package/dist/syllabi/alphabet/lessons/lesson-07.mdx.js +147 -0
  13. package/dist/syllabi/alphabet/lessons/lesson-08.mdx.js +172 -0
  14. package/dist/syllabi/alphabet/lessons/lesson-09.mdx.js +159 -0
  15. package/dist/syllabi/alphabet/lessons/lesson-10.mdx.js +175 -0
  16. package/dist/syllabi/essentials/index.d.ts +7 -0
  17. package/dist/syllabi/essentials/index.js +39 -0
  18. package/dist/syllabi/essentials/lessons/lesson-01.mdx.js +187 -0
  19. package/dist/syllabi/essentials/lessons/lesson-02.mdx.js +206 -0
  20. package/dist/syllabi/essentials/lessons/lesson-03.mdx.js +221 -0
  21. package/dist/syllabi/essentials/lessons/lesson-04.mdx.js +190 -0
  22. package/dist/syllabi/essentials/lessons/lesson-05.mdx.js +211 -0
  23. package/dist/syllabi/essentials/lessons/lesson-06.mdx.js +224 -0
  24. package/dist/syllabi/numbers/index.d.ts +7 -0
  25. package/dist/syllabi/numbers/index.js +37 -0
  26. package/dist/syllabi/numbers/lessons/lesson-01.mdx.js +175 -0
  27. package/dist/syllabi/numbers/lessons/lesson-02.mdx.js +200 -0
  28. package/dist/syllabi/numbers/lessons/lesson-03.mdx.js +193 -0
  29. package/dist/syllabi/numbers/lessons/lesson-04.mdx.js +166 -0
  30. package/dist/syllabi/numbers/lessons/lesson-05.mdx.js +237 -0
  31. package/package.json +72 -0
  32. package/src/syllabi/alphabet/lessons/lesson-01.mdx +150 -0
  33. package/src/syllabi/alphabet/lessons/lesson-02.mdx +165 -0
  34. package/src/syllabi/alphabet/lessons/lesson-03.mdx +160 -0
  35. package/src/syllabi/alphabet/lessons/lesson-04.mdx +150 -0
  36. package/src/syllabi/alphabet/lessons/lesson-05.mdx +143 -0
  37. package/src/syllabi/alphabet/lessons/lesson-06.mdx +165 -0
  38. package/src/syllabi/alphabet/lessons/lesson-07.mdx +143 -0
  39. package/src/syllabi/alphabet/lessons/lesson-08.mdx +168 -0
  40. package/src/syllabi/alphabet/lessons/lesson-09.mdx +155 -0
  41. package/src/syllabi/alphabet/lessons/lesson-10.mdx +171 -0
  42. package/src/syllabi/essentials/lessons/lesson-01.mdx +183 -0
  43. package/src/syllabi/essentials/lessons/lesson-02.mdx +202 -0
  44. package/src/syllabi/essentials/lessons/lesson-03.mdx +217 -0
  45. package/src/syllabi/essentials/lessons/lesson-04.mdx +186 -0
  46. package/src/syllabi/essentials/lessons/lesson-05.mdx +207 -0
  47. package/src/syllabi/essentials/lessons/lesson-06.mdx +220 -0
  48. package/src/syllabi/numbers/lessons/lesson-01.mdx +171 -0
  49. package/src/syllabi/numbers/lessons/lesson-02.mdx +196 -0
  50. package/src/syllabi/numbers/lessons/lesson-03.mdx +189 -0
  51. package/src/syllabi/numbers/lessons/lesson-04.mdx +162 -0
  52. package/src/syllabi/numbers/lessons/lesson-05.mdx +233 -0
@@ -0,0 +1,166 @@
1
+ const n = `---
2
+ type: lesson
3
+ id: korean-numbers-lesson-04
4
+ title: "Lesson 4 — Korean Counters (개, 명, 마리, 잔, 권...)"
5
+ description: "Learn essential Korean measure words (counters) used with numbers"
6
+ order: 4
7
+ parentId: ko-numbers
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - numbers
12
+ - counters
13
+ - measure-words
14
+ metadata:
15
+ estimatedTime: 30
16
+ prerequisites: [korean-numbers-lesson-03]
17
+ learningObjectives:
18
+ - id: obj-ko-num-04-counters
19
+ description: "Use the correct counter with native Korean numbers for objects, people, and animals"
20
+ skill: word-production
21
+ - id: obj-ko-num-04-sentences
22
+ description: "Form counting phrases with numbers and counters"
23
+ skill: pattern-application
24
+ ---
25
+
26
+ # Lesson 4 — Korean Counters (개, 명, 마리, 잔, 권...)
27
+
28
+ ## Introduction
29
+
30
+ Korean, like Japanese and Chinese, uses **counter words** (분류사, bullyu-sa) when counting. You cannot simply say "three book" — you must say "three **권** book" (세 권의 책). The counter changes based on what you are counting.
31
+
32
+ Korean counters go **between the number and the noun**, or after the noun with the number.
33
+
34
+ ## Essential Korean Counters
35
+
36
+ :::vocabulary-set{id="ko-counters-essential" title="Essential Korean Counters"}
37
+
38
+ ::vocab-item{id="ko-counter-gae" word="개 (個)" pronunciation="gae" meaning="general object counter — for most things"}
39
+
40
+ ::vocab-item{id="ko-counter-myeong" word="명 (名)" pronunciation="myeong" meaning="counter for people (formal)"}
41
+
42
+ ::vocab-item{id="ko-counter-mari" word="마리" pronunciation="ma-ri" meaning="counter for animals"}
43
+
44
+ ::vocab-item{id="ko-counter-jan" word="잔 (盞)" pronunciation="jan" meaning="counter for cups/glasses of liquid"}
45
+
46
+ ::vocab-item{id="ko-counter-gwon" word="권 (卷)" pronunciation="gwon" meaning="counter for books/bound volumes"}
47
+
48
+ ::vocab-item{id="ko-counter-jang" word="장 (張)" pronunciation="jang" meaning="counter for flat items (paper, photos)"}
49
+
50
+ ::vocab-item{id="ko-counter-byeong" word="병 (甁)" pronunciation="byeong" meaning="counter for bottles"}
51
+
52
+ ::vocab-item{id="ko-counter-gwa" word="과 / 개과" pronunciation="gwa" meaning="counter for lessons/courses (과목)"}
53
+
54
+ :::
55
+
56
+ ## Counter Usage Table
57
+
58
+ | What you're counting | Counter | Number system | Example |
59
+ |---------------------|---------|---------------|---------|
60
+ | General objects | 개 | Native | 두 개 (two things) |
61
+ | People | 명 | Native | 세 명 (three people) |
62
+ | Animals | 마리 | Native | 한 마리 (one animal) |
63
+ | Cups of liquid | 잔 | Native | 네 잔 (four cups) |
64
+ | Books/volumes | 권 | Native | 다섯 권 (five books) |
65
+ | Flat items | 장 | Native | 한 장 (one sheet) |
66
+ | Bottles | 병 | Native | 두 병 (two bottles) |
67
+ | Times/occurrences | 번 (Sino) | Sino | 삼 번 (three times) |
68
+ | Minutes | 분 (Sino) | Sino | 십오 분 (15 minutes) |
69
+ | Floors | 층 (Sino) | Sino | 이 층 (2nd floor) |
70
+
71
+ ## Sentence Patterns
72
+
73
+ Korean offers two ways to say "two cups of coffee":
74
+
75
+ **Pattern 1** — Number + Counter + Noun:
76
+ > 두 잔의 커피 (du jan-ui keo-pi)
77
+ > Two cups of coffee
78
+
79
+ **Pattern 2** — Noun + Number + Counter (more natural in speech):
80
+ > 커피 두 잔 (keo-pi du jan)
81
+ > Coffee two cups
82
+
83
+ Pattern 2 is more common in everyday Korean.
84
+
85
+ ## Practical Examples
86
+
87
+ :::vocabulary-set{id="ko-counter-examples" title="Counter Practice Phrases"}
88
+
89
+ ::vocab-item{id="ko-ex-apple-3" word="사과 세 개" pronunciation="sa-gwa se gae" meaning="three apples"}
90
+
91
+ ::vocab-item{id="ko-ex-people-5" word="다섯 명" pronunciation="da-seot myeong" meaning="five people"}
92
+
93
+ ::vocab-item{id="ko-ex-dog-2" word="강아지 두 마리" pronunciation="gang-a-ji du ma-ri" meaning="two puppies"}
94
+
95
+ ::vocab-item{id="ko-ex-coffee-4" word="커피 네 잔" pronunciation="keo-pi ne jan" meaning="four coffees"}
96
+
97
+ ::vocab-item{id="ko-ex-book-1" word="책 한 권" pronunciation="chaek han gwon" meaning="one book"}
98
+
99
+ :::
100
+
101
+ ## Shortened Native Numbers with Counters
102
+
103
+ Remember from Lesson 3 — native numbers 1-4 shorten before counters:
104
+
105
+ | Number | Standalone | Before counter | Example |
106
+ |--------|-----------|----------------|---------|
107
+ | 1 | 하나 | 한 | 한 개 (one item) |
108
+ | 2 | 둘 | 두 | 두 명 (two people) |
109
+ | 3 | 셋 | 세 | 세 잔 (three cups) |
110
+ | 4 | 넷 | 네 | 네 마리 (four animals) |
111
+ | 5-10 | same | same | 다섯 개, 여섯 명 |
112
+
113
+ ## Key Points
114
+
115
+ 1. **개 is the default**: When unsure which counter to use, 개 (general object) is usually acceptable
116
+ 2. **Most counters use native numbers**: 개, 명, 마리, 잔, 권 all pair with native numbers
117
+ 3. **Sino counters**: 번 (times), 분 (minutes), 층 (floors) pair with Sino-Korean numbers
118
+ 4. **Shortened forms**: 한/두/세/네 before counters (not 하나/둘/셋/넷)
119
+
120
+ ## Practice Exercises
121
+
122
+ :::exercise{id="ko-num-04-counters" type="matching" title="Match Counters to Categories" skill="word-production" objectiveId="obj-ko-num-04-counters"}
123
+
124
+ **Question:** Which counter do you use for each?
125
+
126
+ - One dog = 강아지 한 ___
127
+ - Three books = 책 세 ___
128
+ - Two cups of water = 물 두 ___
129
+ - Four people = 사람 네 ___
130
+
131
+ **Answer:**
132
+
133
+ - One dog = 강아지 한 마리
134
+ - Three books = 책 세 권
135
+ - Two cups of water = 물 두 잔
136
+ - Four people = 사람 네 명
137
+
138
+ **Explanation:** Each category uses a specific counter. 마리 for animals, 권 for books/volumes, 잔 for cups of liquid, 명 for people.
139
+
140
+ :::
141
+
142
+ :::exercise{id="ko-num-04-sentences" type="fill-in-blank" title="Ordering at a Café" skill="pattern-application" objectiveId="obj-ko-num-04-sentences"}
143
+
144
+ **Question:** You are at a café. How do you order these items?
145
+
146
+ 1. Two coffees: 커피 ___ ___
147
+ 2. One juice: 주스 ___ ___
148
+ 3. Three bottles of water: 물 ___ ___
149
+
150
+ **Answer:**
151
+
152
+ 1. 커피 두 잔 (keo-pi du jan)
153
+ 2. 주스 한 잔 (ju-seu han jan)
154
+ 3. 물 세 병 (mul se byeong)
155
+
156
+ **Explanation:** Drinks in cups use 잔, bottled drinks use 병. Remember the shortened forms: 두 (not 둘), 한 (not 하나), 세 (not 셋).
157
+
158
+ :::
159
+
160
+ ## What's Next
161
+
162
+ In Lesson 5, you will learn how to tell time, talk about dates, and use Korean numbers in everyday money situations.
163
+ `;
164
+ export {
165
+ n as default
166
+ };
@@ -0,0 +1,237 @@
1
+ const n = `---
2
+ type: lesson
3
+ id: korean-numbers-lesson-05
4
+ title: "Lesson 5 — Time, Dates, and Money (시간, 날짜, 돈)"
5
+ description: "Use Korean numbers to tell time, express dates, and handle money"
6
+ order: 5
7
+ parentId: ko-numbers
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - numbers
12
+ - time
13
+ - dates
14
+ - money
15
+ metadata:
16
+ estimatedTime: 30
17
+ prerequisites: [korean-numbers-lesson-04]
18
+ learningObjectives:
19
+ - id: obj-ko-num-05-time
20
+ description: "Tell time in Korean using hours and minutes"
21
+ skill: word-production
22
+ - id: obj-ko-num-05-dates
23
+ description: "Say dates and years in Korean"
24
+ skill: word-pronunciation
25
+ - id: obj-ko-num-05-money
26
+ description: "Express Korean won amounts"
27
+ skill: situational-response
28
+ ---
29
+
30
+ # Lesson 5 — Time, Dates, and Money (시간, 날짜, 돈)
31
+
32
+ ## Introduction
33
+
34
+ Numbers are most useful in practical contexts. In this final lesson of the Korean numbers syllabus, you will learn how to tell time, state dates, and use numbers for money — the three most essential number applications in daily Korean life.
35
+
36
+ ## Telling the Time
37
+
38
+ ### Key Vocabulary
39
+
40
+ :::vocabulary-set{id="ko-time-words" title="Time Vocabulary"}
41
+
42
+ ::vocab-item{id="ko-time-si" word="시 (時)" pronunciation="si" meaning="o'clock — hour marker (with native numbers)"}
43
+
44
+ ::vocab-item{id="ko-time-bun" word="분 (分)" pronunciation="bun" meaning="minute — minute marker (with Sino-Korean numbers)"}
45
+
46
+ ::vocab-item{id="ko-time-ban" word="반" pronunciation="ban" meaning="half — as in half past the hour"}
47
+
48
+ ::vocab-item{id="ko-time-am" word="오전" pronunciation="o-jeon" meaning="a.m. — before noon"}
49
+
50
+ ::vocab-item{id="ko-time-pm" word="오후" pronunciation="o-hu" meaning="p.m. — after noon"}
51
+
52
+ ::vocab-item{id="ko-time-jigeum" word="지금" pronunciation="ji-geum" meaning="now"}
53
+
54
+ ::vocab-item{id="ko-time-myeot" word="몇 시예요?" pronunciation="myeot si-ye-yo?" meaning="What time is it?"}
55
+
56
+ :::
57
+
58
+ ### How to Say the Time
59
+
60
+ **Structure:** [오전/오후] + [hour (native)] 시 + [minute (Sino)] 분
61
+
62
+ | Time | Korean | Romanization |
63
+ |------|--------|-------------|
64
+ | 1:00 | 한 시 | han si |
65
+ | 3:30 | 세 시 삼십 분 (or: 세 시 반) | se si sam-sip bun |
66
+ | 7:15 | 일곱 시 십오 분 | il-gop si si-bo bun |
67
+ | 12:00 PM | 오후 열두 시 | o-hu yeol-du si |
68
+ | 6:45 AM | 오전 여섯 시 사십오 분 | o-jeon yeo-seot si sa-si-bo bun |
69
+
70
+ **Memory rule:** Hours = Native Korean (한, 두, 세...); Minutes = Sino-Korean (십, 이십, 삼십...)
71
+
72
+ ## Dates
73
+
74
+ ### Date Vocabulary
75
+
76
+ :::vocabulary-set{id="ko-date-words" title="Date Vocabulary"}
77
+
78
+ ::vocab-item{id="ko-date-nyeon" word="년 (年)" pronunciation="nyeon" meaning="year (with Sino-Korean numbers)"}
79
+
80
+ ::vocab-item{id="ko-date-wol" word="월 (月)" pronunciation="wol" meaning="month (with Sino-Korean numbers)"}
81
+
82
+ ::vocab-item{id="ko-date-il" word="일 (日)" pronunciation="il" meaning="day/date (with Sino-Korean numbers)"}
83
+
84
+ ::vocab-item{id="ko-date-onil" word="오늘" pronunciation="o-neul" meaning="today"}
85
+
86
+ ::vocab-item{id="ko-date-eoje" word="어제" pronunciation="eo-je" meaning="yesterday"}
87
+
88
+ ::vocab-item{id="ko-date-naeil" word="내일" pronunciation="nae-il" meaning="tomorrow"}
89
+
90
+ :::
91
+
92
+ ### Months of the Year
93
+
94
+ Korean months are simply numbers + 월 (no special names):
95
+
96
+ | Month | Korean | Romanization |
97
+ |-------|--------|-------------|
98
+ | January | 일월 | il-wol |
99
+ | February | 이월 | i-wol |
100
+ | March | 삼월 | sam-wol |
101
+ | June | 유월 | yu-wol |
102
+ | July | 칠월 | chil-wol |
103
+ | October | 시월 | si-wol |
104
+ | December | 십이월 | si-bi-wol |
105
+
106
+ **Special cases:** June = 유월 (not 육월), October = 시월 (not 십월) — these are the only irregular months.
107
+
108
+ ### Saying Dates
109
+
110
+ **Structure:** [Year] 년 [Month] 월 [Day] 일
111
+
112
+ Example: February 14, 2025 = **이천이십오 년 이월 십사 일**
113
+
114
+ ## Money — Korean Won (원)
115
+
116
+ ### Key Denominations
117
+
118
+ :::vocabulary-set{id="ko-money" title="Korean Won Denominations"}
119
+
120
+ ::vocab-item{id="ko-won-100" word="백 원" pronunciation="baek won" meaning="100 won coin"}
121
+
122
+ ::vocab-item{id="ko-won-500" word="오백 원" pronunciation="o-baek won" meaning="500 won coin"}
123
+
124
+ ::vocab-item{id="ko-won-1000" word="천 원" pronunciation="cheon won" meaning="1,000 won bill"}
125
+
126
+ ::vocab-item{id="ko-won-5000" word="오천 원" pronunciation="o-cheon won" meaning="5,000 won bill"}
127
+
128
+ ::vocab-item{id="ko-won-10000" word="만 원" pronunciation="man won" meaning="10,000 won bill"}
129
+
130
+ ::vocab-item{id="ko-won-50000" word="오만 원" pronunciation="o-man won" meaning="50,000 won bill"}
131
+
132
+ :::
133
+
134
+ ### Shopping Phrases
135
+
136
+ | Korean | Romanization | Meaning |
137
+ |--------|-------------|---------|
138
+ | 얼마예요? | eol-ma-ye-yo? | How much is it? |
139
+ | 이거 얼마예요? | i-geo eol-ma-ye-yo? | How much is this? |
140
+ | 오천 원이에요. | o-cheon wo-ni-e-yo. | It is 5,000 won. |
141
+ | 계산해 주세요. | gye-san-hae ju-se-yo. | Please give me the bill. |
142
+ | 거스름돈 | geo-seu-reum-don | change (money returned) |
143
+
144
+ ### Common Prices in Korea
145
+
146
+ | Item | Typical price | Korean |
147
+ |------|--------------|--------|
148
+ | Coffee (café) | ~5,500원 | 오천오백 원 |
149
+ | Subway fare | ~1,400원 | 천사백 원 |
150
+ | Convenience store snack | ~1,500원 | 천오백 원 |
151
+ | Budget lunch | ~8,000원 | 팔천 원 |
152
+
153
+ ## Putting It All Together
154
+
155
+ Typical conversation:
156
+
157
+ **A:** 지금 몇 시예요? (Ji-geum myeot si-ye-yo? — What time is it now?)
158
+ **B:** 오후 두 시 삼십 분이에요. (O-hu du si sam-sip bu-ni-e-yo. — It is 2:30 PM.)
159
+
160
+ **A:** 오늘 며칠이에요? (O-neul myeo-chi-ri-e-yo? — What date is today?)
161
+ **B:** 삼월 십오 일이에요. (Sam-wol si-bo i-ri-e-yo. — It is March 15th.)
162
+
163
+ **A:** 커피 얼마예요? (Keo-pi eol-ma-ye-yo? — How much is the coffee?)
164
+ **B:** 오천 원이에요. (O-cheon wo-ni-e-yo. — It is 5,000 won.)
165
+
166
+ ## Key Points
167
+
168
+ 1. **Time rule**: Hours = native (한, 두, 세), minutes = Sino (십, 이십, 삼십)
169
+ 2. **반 (ban)** = half past: 두 시 반 = 2:30
170
+ 3. **Months = number + 월**: June (유월) and October (시월) are the only exceptions
171
+ 4. **만 = 10,000**: Prices in Korea often involve 만 원 units
172
+
173
+ ## Practice Exercises
174
+
175
+ :::exercise{id="ko-num-05-time" type="fill-in-blank" title="Tell the Time" skill="word-production" objectiveId="obj-ko-num-05-time"}
176
+
177
+ **Question:** Say these times in Korean:
178
+
179
+ 1. 9:00 AM
180
+ 2. 4:30 PM
181
+ 3. 11:15 PM
182
+
183
+ **Answer:**
184
+
185
+ 1. 오전 아홉 시 (o-jeon a-hop si)
186
+ 2. 오후 네 시 반 (o-hu ne si ban)
187
+ 3. 오후 열한 시 십오 분 (o-hu yeol-han si si-bo bun)
188
+
189
+ **Explanation:** Hours use native Korean: 아홉 (9), 네 (4, shortened from 넷), 열한 (11 = 열+하나→열한). Minutes use Sino-Korean: 십오 (15). 반 is a shortcut for 삼십 분 (half past).
190
+
191
+ :::
192
+
193
+ :::exercise{id="ko-num-05-dates" type="fill-in-blank" title="Say the Date" skill="word-pronunciation" objectiveId="obj-ko-num-05-dates"}
194
+
195
+ **Question:** Say these dates in Korean:
196
+
197
+ 1. March 3rd
198
+ 2. December 25th
199
+ 3. The year 2025
200
+
201
+ **Answer:**
202
+
203
+ 1. 삼월 삼 일 (sam-wol sam il)
204
+ 2. 십이월 이십오 일 (si-bi-wol i-si-bo il)
205
+ 3. 이천이십오 년 (i-cheon-i-sip-o nyeon)
206
+
207
+ **Explanation:** All date components (year, month, day) use Sino-Korean numbers. 십이월 = 12+월, 이십오 일 = 25th. The year 2025 = 이천(2000) + 이십오(25) = 이천이십오.
208
+
209
+ :::
210
+
211
+ :::exercise{id="ko-num-05-money" type="fill-in-blank" title="Shopping Math" skill="situational-response" objectiveId="obj-ko-num-05-money"}
212
+
213
+ **Question:** You buy items that cost 3,500원 and 7,200원. How much total, and how do you say each price?
214
+
215
+ **Answer:**
216
+
217
+ - 3,500원 = 삼천오백 원 (sam-cheon-o-baek won)
218
+ - 7,200원 = 칠천이백 원 (chil-cheon-i-baek won)
219
+ - Total: 10,700원 = 만칠백 원 (man-chil-baek won)
220
+
221
+ **Explanation:** Korean prices decompose: 3,500 = 삼천(3,000) + 오백(500). The total 10,700 = 만(10,000) + 칠백(700). Note that once you reach 만 (10,000), you express thousands differently: 만칠백 = 10,700, not "십천칠백."
222
+
223
+ :::
224
+
225
+ ## Congratulations!
226
+
227
+ You have completed the Korean Numbers syllabus. You now know:
228
+ - Sino-Korean numbers 1 through large numbers (만, 백만...)
229
+ - Native Korean numbers 1-10 and their shortened forms
230
+ - Essential counters (개, 명, 마리, 잔, 권...)
231
+ - Time, date, and money expressions
232
+
233
+ Continue with the Essentials syllabus to put these numbers to use in real conversations!
234
+ `;
235
+ export {
236
+ n as default
237
+ };
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@syllst/ko",
3
+ "version": "0.1.1",
4
+ "description": "Korean SYLLST content - Hangul alphabet, numbers, and essentials syllabi",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./alphabet": {
14
+ "types": "./dist/syllabi/alphabet/index.d.ts",
15
+ "import": "./dist/syllabi/alphabet/index.js"
16
+ },
17
+ "./numbers": {
18
+ "types": "./dist/syllabi/numbers/index.d.ts",
19
+ "import": "./dist/syllabi/numbers/index.js"
20
+ },
21
+ "./essentials": {
22
+ "types": "./dist/syllabi/essentials/index.d.ts",
23
+ "import": "./dist/syllabi/essentials/index.js"
24
+ }
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "src/syllabi/**/*.mdx"
29
+ ],
30
+ "dependencies": {},
31
+ "devDependencies": {
32
+ "tsx": "^4.7.0",
33
+ "vite": "^7.3.1",
34
+ "vite-plugin-dts": "^4.5.4",
35
+ "vitest": "^4.0.18",
36
+ "@laeng/ko": "0.1.1",
37
+ "@syllst/content-shared": "0.2.2"
38
+ },
39
+ "peerDependencies": {
40
+ "@syllst/core": "^0.4.2",
41
+ "@syllst/processor": "^0.5.0"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "keywords": [
47
+ "korean",
48
+ "hangul",
49
+ "language-learning",
50
+ "syllst",
51
+ "mdx",
52
+ "alphabet",
53
+ "jamo",
54
+ "numbers",
55
+ "counting",
56
+ "essentials",
57
+ "phrases",
58
+ "greetings"
59
+ ],
60
+ "license": "MIT",
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "https://github.com/fustilio/polyglot-bundles",
64
+ "directory": "packages/ko/syllst"
65
+ },
66
+ "scripts": {
67
+ "build": "vite build",
68
+ "clean": "rm -rf dist",
69
+ "lint": "eslint src",
70
+ "test": "vitest run --passWithNoTests"
71
+ }
72
+ }
@@ -0,0 +1,150 @@
1
+ ---
2
+ type: lesson
3
+ id: korean-hangul-lesson-01
4
+ title: "Lesson 1 — Basic Vowels I (ㅏ, ㅑ, ㅓ, ㅕ)"
5
+ description: "Learn the first four Korean basic vowels: a, ya, eo, yeo"
6
+ order: 1
7
+ parentId: ko-alphabet
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - vowels
12
+ - basic-characters
13
+ metadata:
14
+ estimatedTime: 20
15
+ prerequisites: []
16
+ learningObjectives:
17
+ - id: obj-ko-alph-01-recognize
18
+ description: "Recognize the vowels ㅏ, ㅑ, ㅓ, ㅕ"
19
+ skill: character-recognition
20
+ references: [a, ya, eo, yeo]
21
+ - id: obj-ko-alph-01-sounds
22
+ description: "Map each vowel to its sound"
23
+ skill: character-sound-mapping
24
+ references: [a, ya, eo, yeo]
25
+ ---
26
+
27
+ # Lesson 1 — Basic Vowels I (ㅏ, ㅑ, ㅓ, ㅕ)
28
+
29
+ ## Introduction
30
+
31
+ Welcome to Hangul, the Korean writing system. Hangul was created in 1443 by King Sejong the Great to promote literacy. Unlike Chinese characters or Japanese kanji, Hangul is a phonemic alphabet — each symbol represents a sound, not a word or idea.
32
+
33
+ Hangul is made up of two types of letters: **자음 (jaeum)** — consonants — and **모음 (moeum)** — vowels. These letters are combined into syllable blocks to write Korean words.
34
+
35
+ In this first lesson, you will learn four of the ten basic vowels.
36
+
37
+ ## What Is a Vowel in Hangul?
38
+
39
+ Korean vowels are written as vertical or horizontal strokes. They cannot stand alone as syllables — they are always combined with a consonant. The silent consonant **ㅇ (ieung)** is used as a placeholder when a vowel starts a syllable.
40
+
41
+ For example: **아** = ㅇ (silent) + ㅏ (a sound) = "a"
42
+
43
+ ## Characters
44
+
45
+ :::character-set{id="ko-vowels-1" title="Basic Vowels I"}
46
+
47
+ ::character{id="a" canonicalRef="a" char="ㅏ" name="ㅏ 아 (a)" charType="vowel" data:romanization="a" data:ipa="a"}
48
+
49
+ ::character{id="ya" canonicalRef="ya" char="ㅑ" name="ㅑ 야 (ya)" charType="vowel" data:romanization="ya" data:ipa="ja"}
50
+
51
+ ::character{id="eo" canonicalRef="eo" char="ㅓ" name="ㅓ 어 (eo)" charType="vowel" data:romanization="eo" data:ipa="ʌ"}
52
+
53
+ ::character{id="yeo" canonicalRef="yeo" char="ㅕ" name="ㅕ 여 (yeo)" charType="vowel" data:romanization="yeo" data:ipa="jʌ"}
54
+
55
+ :::
56
+
57
+ ## Pronunciation Guide
58
+
59
+ | Character | Romanization | Sound | English Approximation |
60
+ |-----------|-------------|-------|----------------------|
61
+ | ㅏ | a | /a/ | "a" in "father" |
62
+ | ㅑ | ya | /ja/ | "ya" in "yard" |
63
+ | ㅓ | eo | /ʌ/ | "u" in "but" (but lower) |
64
+ | ㅕ | yeo | /jʌ/ | "yuh" — like "ya" but with eo sound |
65
+
66
+ **Note on ㅓ (eo):** This vowel is often difficult for English speakers. It sounds like the "u" in "but" but with your mouth more open. Try keeping your lips relaxed and slightly open.
67
+
68
+ ## Shape Pattern
69
+
70
+ Notice the visual pattern:
71
+
72
+ - **ㅏ** — a vertical line with a short horizontal stroke pointing right
73
+ - **ㅑ** — same as ㅏ but with **two** short strokes (the "y" prefix doubles the stroke)
74
+ - **ㅓ** — a vertical line with a short horizontal stroke pointing **left**
75
+ - **ㅕ** — same as ㅓ but with **two** short strokes (the "y" prefix doubles the stroke)
76
+
77
+ This pattern continues throughout Hangul: adding an extra stroke creates the "y" version of any vowel.
78
+
79
+ ## Syllable Formation
80
+
81
+ When these vowels combine with the silent consonant ㅇ:
82
+
83
+ | Vowel | Syllable | Pronunciation |
84
+ |-------|----------|---------------|
85
+ | ㅏ | 아 | a |
86
+ | ㅑ | 야 | ya |
87
+ | ㅓ | 어 | eo |
88
+ | ㅕ | 여 | yeo |
89
+
90
+ ## Practice Words
91
+
92
+ | Korean | Romanization | Meaning |
93
+ |--------|-------------|---------|
94
+ | 아이 | a-i | child |
95
+ | 야구 | ya-gu | baseball |
96
+ | 어머니 | eo-meo-ni | mother |
97
+ | 여기 | yeo-gi | here |
98
+
99
+ ## Key Points
100
+
101
+ 1. **Hangul is systematic**: Vowels follow visual patterns (extra stroke = "y" prefix)
102
+ 2. **ㅇ is the silent placeholder**: Used when a vowel opens a syllable
103
+ 3. **ㅓ is unique**: The sound has no perfect English equivalent; keep lips relaxed
104
+ 4. **Vertical vowels** (ㅏ, ㅑ, ㅓ, ㅕ) go to the right of a consonant in a syllable block
105
+
106
+ ## Practice Recognition
107
+
108
+ :::exercise{id="ko-alph-01-recognition" type="matching" title="Match Vowels to Sounds" skill="character-recognition" tests="a,ya,eo,yeo" objectiveId="obj-ko-alph-01-recognize"}
109
+
110
+ **Question:** Match each Hangul vowel to its romanization
111
+
112
+ - ㅏ
113
+ - ㅑ
114
+ - ㅓ
115
+ - ㅕ
116
+
117
+ **Answer:**
118
+
119
+ - ㅏ = a
120
+ - ㅑ = ya
121
+ - ㅓ = eo
122
+ - ㅕ = yeo
123
+
124
+ **Explanation:** The four vowels follow a clear visual pattern. ㅏ and ㅓ are mirror images of each other. ㅑ and ㅕ add an extra stroke to create the "y" variants.
125
+
126
+ :::
127
+
128
+ :::exercise{id="ko-alph-01-sounds" type="fill-in-blank" title="Sound Mapping" skill="character-sound-mapping" tests="a,ya,eo,yeo" objectiveId="obj-ko-alph-01-sounds"}
129
+
130
+ **Question:** What sound does each vowel make?
131
+
132
+ - ㅏ sounds like ___
133
+ - ㅑ sounds like ___
134
+ - ㅓ sounds like ___
135
+ - ㅕ sounds like ___
136
+
137
+ **Answer:**
138
+
139
+ - ㅏ = /a/ as in "father"
140
+ - ㅑ = /ja/ as in "yard"
141
+ - ㅓ = /ʌ/ as in "but" (lips more open)
142
+ - ㅕ = /jʌ/ — "yuh" sound
143
+
144
+ **Explanation:** These four vowels form two pairs: ㅏ/ㅑ and ㅓ/ㅕ. The "y" variants simply add a "y" sound before the base vowel.
145
+
146
+ :::
147
+
148
+ ## What's Next
149
+
150
+ In Lesson 2, you will learn three more basic vowels: ㅗ (o), ㅛ (yo), and ㅜ (u) — the horizontal vowels of Hangul.