ipa-hangul 1.0.0 → 1.0.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.
- package/README.md +4 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -85,10 +85,12 @@ Each IPA sound is mapped to the closest Korean equivalent, then assembled into v
|
|
|
85
85
|
|------|-----|--------|-------|
|
|
86
86
|
| hello | /ˈhɛloʊ/ | 헤로 | Stress marker removed |
|
|
87
87
|
| cat | /kæt/ | 캩 | Final 't' → ㅌ |
|
|
88
|
+
| book | /bʊk/ | 붘 | Final 'k' → ㅋ |
|
|
88
89
|
| internet | /ˈɪntərnɛt/ | 인털넽 | Multi-syllable |
|
|
89
|
-
| world | /
|
|
90
|
+
| world | /wɝld/ | 월ㄷ | Consonant-only 'ld' as Jamo |
|
|
90
91
|
| pretty | /ˈprɪti/ | 프리티 | Consonant cluster 'pr' |
|
|
91
|
-
|
|
|
92
|
+
| see | /siː/ | 시- | Long vowel marked with dash |
|
|
93
|
+
| rumble | /ˈɹʌmb(ə)l/ | 럼ㅂㄹ | Optional sounds removed |
|
|
92
94
|
|
|
93
95
|
## API
|
|
94
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ipa-hangul",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Convert IPA (International Phonetic Alphabet) pronunciation to Korean Hangul",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -19,6 +19,14 @@
|
|
|
19
19
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
20
20
|
"prepublishOnly": "npm run build"
|
|
21
21
|
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/YangSeungWon/ipa-hangul.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/YangSeungWon/ipa-hangul#readme",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/YangSeungWon/ipa-hangul/issues"
|
|
29
|
+
},
|
|
22
30
|
"keywords": [
|
|
23
31
|
"ipa",
|
|
24
32
|
"hangul",
|