@polyglot-bundles/cs-lang 1.1.2

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.
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Czech Character Types
3
+ *
4
+ * Type definitions for Czech characters (Latin script with diacritics).
5
+ * Czech has 42 letters: 13 vowels (including 2 diphthongs), 29 consonants.
6
+ */
7
+ /**
8
+ * Base character info
9
+ */
10
+ type CzechCharacterBaseInfo = {
11
+ char: string;
12
+ id: string;
13
+ display?: string;
14
+ audio?: string;
15
+ notes?: string;
16
+ };
17
+ /**
18
+ * Czech Vowels
19
+ */
20
+ export type CzechVowelsInfo = {
21
+ charType: "vowel";
22
+ ipa: string;
23
+ name: string;
24
+ length?: "short" | "long";
25
+ } & CzechCharacterBaseInfo;
26
+ /**
27
+ * Czech Consonants
28
+ */
29
+ export type CzechConsonantsInfo = {
30
+ charType: "consonant";
31
+ ipa: string;
32
+ name: string;
33
+ articulation: "stop" | "fricative" | "nasal" | "approximant" | "lateral" | "trill" | "affricate";
34
+ voicing: "voiced" | "voiceless" | "nasal" | "lateral" | "approximant" | "trill" | "fricative" | "affricate";
35
+ place: "velar" | "palatal" | "alveolar" | "dental" | "labial" | "glottal" | "alveolar" | "postalveolar" | "retroflex";
36
+ } & CzechCharacterBaseInfo;
37
+ export type CzechCharacter = CzechVowelsInfo | CzechConsonantsInfo;
38
+ export declare function isVowel(character: CzechCharacter): character is CzechVowelsInfo;
39
+ export declare function isConsonant(character: CzechCharacter): character is CzechConsonantsInfo;
40
+ export declare const czechVowels: CzechVowelsInfo[];
41
+ export declare const czechConsonants: CzechConsonantsInfo[];
42
+ export declare const czechAllCharacters: (CzechVowelsInfo | CzechConsonantsInfo)[];
43
+ export {};
@@ -0,0 +1,74 @@
1
+ function n(a) {
2
+ return a.charType === "vowel";
3
+ }
4
+ function e(a) {
5
+ return a.charType === "consonant";
6
+ }
7
+ const i = [
8
+ // Short vowels
9
+ { char: "a", id: "a", charType: "vowel", ipa: "a", name: "A", length: "short" },
10
+ { char: "e", id: "e", charType: "vowel", ipa: "ɛ", name: "E", length: "short" },
11
+ { char: "i", id: "i", charType: "vowel", ipa: "i", name: "I", length: "short" },
12
+ { char: "o", id: "o", charType: "vowel", ipa: "ɔ", name: "O", length: "short" },
13
+ { char: "u", id: "u", charType: "vowel", ipa: "u", name: "U", length: "short" },
14
+ // Long vowels
15
+ { char: "á", id: "a_acute", charType: "vowel", ipa: "aː", name: "Á", length: "long" },
16
+ { char: "é", id: "e_acute", charType: "vowel", ipa: "eː", name: "É", length: "long" },
17
+ { char: "í", id: "i_acute", charType: "vowel", ipa: "iː", name: "Í", length: "long" },
18
+ { char: "ó", id: "o_acute", charType: "vowel", ipa: "oː", name: "Ó", length: "long" },
19
+ { char: "ú", id: "u_acute", charType: "vowel", ipa: "uː", name: "Ú", length: "long" },
20
+ { char: "ů", id: "u_ring", charType: "vowel", ipa: "uː", name: "Ů", length: "long" },
21
+ // Diphthongs
22
+ { char: "au", id: "au", charType: "vowel", ipa: "aʊ", name: "AU", length: "short" },
23
+ { char: "eu", id: "eu", charType: "vowel", ipa: "ɛʊ", name: "EU", length: "short" }
24
+ ], c = [
25
+ // Bilabial consonants
26
+ { char: "b", id: "b", charType: "consonant", ipa: "b", name: "B", voicing: "voiced", articulation: "stop", place: "labial" },
27
+ { char: "p", id: "p", charType: "consonant", ipa: "p", name: "P", voicing: "voiceless", articulation: "stop", place: "labial" },
28
+ { char: "m", id: "m", charType: "consonant", ipa: "m", name: "M", voicing: "nasal", articulation: "nasal", place: "labial" },
29
+ // Labiodental consonants
30
+ { char: "f", id: "f", charType: "consonant", ipa: "f", name: "F", voicing: "voiceless", articulation: "fricative", place: "labial" },
31
+ { char: "v", id: "v", charType: "consonant", ipa: "v", name: "V", voicing: "voiced", articulation: "fricative", place: "labial" },
32
+ { char: "w", id: "w_foreign", charType: "consonant", ipa: "v", name: "W (foreign)", voicing: "voiced", articulation: "fricative", place: "labial" },
33
+ // Dental/Alveolar consonants
34
+ { char: "t", id: "t", charType: "consonant", ipa: "t", name: "T", voicing: "voiceless", articulation: "stop", place: "dental" },
35
+ { char: "d", id: "d", charType: "consonant", ipa: "d", name: "D", voicing: "voiced", articulation: "stop", place: "dental" },
36
+ { char: "ř", id: "r_caron", charType: "consonant", ipa: "r̝", name: "Ř", voicing: "trill", articulation: "trill", place: "alveolar" },
37
+ { char: "s", id: "s", charType: "consonant", ipa: "s", name: "S", voicing: "voiceless", articulation: "fricative", place: "alveolar" },
38
+ { char: "z", id: "z", charType: "consonant", ipa: "z", name: "Z", voicing: "voiced", articulation: "fricative", place: "alveolar" },
39
+ { char: "n", id: "n", charType: "consonant", ipa: "n", name: "N", voicing: "nasal", articulation: "nasal", place: "alveolar" },
40
+ { char: "l", id: "l", charType: "consonant", ipa: "l", name: "L", voicing: "lateral", articulation: "lateral", place: "alveolar" },
41
+ { char: "r", id: "r", charType: "consonant", ipa: "r", name: "R", voicing: "trill", articulation: "trill", place: "alveolar" },
42
+ // Palatal consonants
43
+ { char: "ť", id: "t_caron", charType: "consonant", ipa: "c", name: "Ť", voicing: "voiceless", articulation: "stop", place: "palatal" },
44
+ { char: "ď", id: "d_caron", charType: "consonant", ipa: "ɟ", name: "Ď", voicing: "voiced", articulation: "stop", place: "palatal" },
45
+ { char: "ť", id: "ť_affricate", charType: "consonant", ipa: "cʰ", name: "Ť (affricate)", voicing: "voiceless", articulation: "affricate", place: "palatal" },
46
+ { char: "ď", id: "ď_affricate", charType: "consonant", ipa: "ɟʰ", name: "Ď (affricate)", voicing: "voiced", articulation: "affricate", place: "palatal" },
47
+ { char: "č", id: "c_caron", charType: "consonant", ipa: "tʃ", name: "Č", voicing: "voiceless", articulation: "affricate", place: "postalveolar" },
48
+ { char: "š", id: "s_caron", charType: "consonant", ipa: "ʃ", name: "Š", voicing: "voiceless", articulation: "fricative", place: "postalveolar" },
49
+ { char: "ž", id: "z_caron", charType: "consonant", ipa: "ʒ", name: "Ž", voicing: "voiced", articulation: "fricative", place: "postalveolar" },
50
+ { char: "ď", id: "ď_palatal", charType: "consonant", ipa: "j", name: "Ď (palatal)", voicing: "voiced", articulation: "approximant", place: "palatal" },
51
+ { char: "ň", id: "n_caron", charType: "consonant", ipa: "ɲ", name: "Ň", voicing: "nasal", articulation: "nasal", place: "palatal" },
52
+ { char: "j", id: "j", charType: "consonant", ipa: "j", name: "J", voicing: "voiced", articulation: "approximant", place: "palatal" },
53
+ // Velar consonants
54
+ { char: "k", id: "k", charType: "consonant", ipa: "k", name: "K", voicing: "voiceless", articulation: "stop", place: "velar" },
55
+ { char: "g", id: "g", charType: "consonant", ipa: "ɡ", name: "G", voicing: "voiced", articulation: "stop", place: "velar" },
56
+ { char: "h", id: "h", charType: "consonant", ipa: "x", name: "H", voicing: "voiceless", articulation: "fricative", place: "velar" },
57
+ { char: "ch", id: "ch", charType: "consonant", ipa: "x", name: "CH", voicing: "voiceless", articulation: "fricative", place: "velar" },
58
+ // Glottal
59
+ { char: "h", id: "h_glottal", charType: "consonant", ipa: "h", name: "H (glottal)", voicing: "voiceless", articulation: "fricative", place: "glottal" },
60
+ // Other consonants
61
+ { char: "q", id: "q_foreign", charType: "consonant", ipa: "k", name: "Q (foreign)", voicing: "voiceless", articulation: "stop", place: "velar" },
62
+ { char: "w", id: "w_foreign", charType: "consonant", ipa: "v", name: "W (foreign)", voicing: "voiced", articulation: "fricative", place: "labial" },
63
+ { char: "x", id: "x_foreign", charType: "consonant", ipa: "ks", name: "X (foreign)", voicing: "voiceless", articulation: "stop", place: "velar" }
64
+ ], o = [
65
+ ...i,
66
+ ...c
67
+ ];
68
+ export {
69
+ o as czechAllCharacters,
70
+ c as czechConsonants,
71
+ i as czechVowels,
72
+ e as isConsonant,
73
+ n as isVowel
74
+ };
@@ -0,0 +1 @@
1
+ export { czechVowels, czechConsonants, czechAllCharacters, type CzechVowelsInfo, type CzechConsonantsInfo, type CzechCharacter, isVowel, isConsonant, } from './characters.js';
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ import { czechAllCharacters as e, czechConsonants as s, czechVowels as n, isConsonant as a, isVowel as h } from "./characters.js";
2
+ export {
3
+ e as czechAllCharacters,
4
+ s as czechConsonants,
5
+ n as czechVowels,
6
+ a as isConsonant,
7
+ h as isVowel
8
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@polyglot-bundles/cs-lang",
3
+ "version": "1.1.2",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "vite build",
9
+ "clean": "rm -rf dist"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "dependencies": {
24
+ "@polyglot-bundles/content-shared": "workspace:*"
25
+ },
26
+ "devDependencies": {
27
+ "@polyglot-bundles/lang-tooling": "workspace:*",
28
+ "vite": "catalog:",
29
+ "vite-plugin-dts": "catalog:"
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/fustilio/polyglot-bundles.git",
34
+ "directory": "packages/cs/lang"
35
+ }
36
+ }