@yosina-lib/yosina 1.1.0 → 1.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 (3) hide show
  1. package/README.ja.md +17 -0
  2. package/README.md +13 -0
  3. package/package.json +1 -1
package/README.ja.md CHANGED
@@ -143,6 +143,23 @@ CJK部首文字を対応する表意文字に変換します。
143
143
  様々なUnicode空白文字を標準ASCII空白に正規化します。
144
144
  - 例: `A B` (表意文字空白) → `A B`
145
145
 
146
+ ### 15. **ローマ数字** (`roman-numerals`)
147
+ Unicodeのローマ数字文字を対応するASCII文字に変換します。
148
+ - 例: `Ⅰ Ⅱ Ⅲ` → `I II III`、`ⅰ ⅱ ⅲ` → `i ii iii`
149
+
150
+ ### 16. **小書きひらがな・カタカナ** (`small-hirakatas`)
151
+ 小書きのひらがな・カタカナを通常サイズの等価文字に変換します。
152
+ - 例: `ぁぃぅ` → `あいう`、`ァィゥ` → `アイウ`
153
+
154
+ ### 17. **変体仮名** (`archaic-hirakatas`)
155
+ 変体仮名(古い仮名文字)を現代のひらがな・カタカナに変換します。
156
+ - 例: `𛀁` → `え`
157
+
158
+ ### 18. **歴史的仮名** (`historical-hirakatas`)
159
+ 歴史的なひらがな・カタカナを現代の等価文字に変換します。
160
+ - オプション: `hiraganas` ("simple"、"decompose"、"skip")、`katakanas` ("simple"、"decompose"、"skip")、`voicedKatakanas` ("decompose"、"skip")
161
+ - 例: `ゐ` → `い` (simple)、`ゐ` → `うぃ` (decompose)、`ヰ` → `イ` (simple)
162
+
146
163
  ## 開発
147
164
 
148
165
  このプロジェクトはTypeScriptを使用したNode.jsと、フォーマッティング/リンティングにBiomeを使用しています。
package/README.md CHANGED
@@ -141,6 +141,19 @@ Normalizes various Unicode space characters to standard ASCII space.
141
141
  Converts Unicode Roman numeral characters to their ASCII letter equivalents.
142
142
  - Example: `Ⅰ Ⅱ Ⅲ` → `I II III`, `ⅰ ⅱ ⅲ` → `i ii iii`
143
143
 
144
+ ### 16. **Small Hirakatas** (`small-hirakatas`)
145
+ Converts small hiragana and katakana characters to their ordinary-sized equivalents.
146
+ - Example: `ぁぃぅ` → `あいう`, `ァィゥ` → `アイウ`
147
+
148
+ ### 17. **Archaic Hirakatas** (`archaic-hirakatas`)
149
+ Converts archaic kana (hentaigana) to their modern hiragana or katakana equivalents.
150
+ - Example: `𛀁` → `え`
151
+
152
+ ### 18. **Historical Hirakatas** (`historical-hirakatas`)
153
+ Converts historical hiragana and katakana characters to their modern equivalents.
154
+ - Options: `hiraganas` ("simple", "decompose", or "skip"), `katakanas` ("simple", "decompose", or "skip"), `voicedKatakanas` ("decompose" or "skip")
155
+ - Example: `ゐ` → `い` (simple), `ゐ` → `うぃ` (decompose), `ヰ` → `イ` (simple)
156
+
144
157
  ## Installation
145
158
 
146
159
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yosina-lib/yosina",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Japanese text transliteration library for JavaScript/TypeScript",
5
5
  "keywords": [
6
6
  "japanese",