@polyglot-bundles/sk-lang 0.1.0

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
+ * Slovak Character Types
3
+ *
4
+ * Type definitions for Slovak characters (Latin script with diacritics).
5
+ * Slovak has 44 letters: 13 vowels (including 3 diphthongs), 31 consonants.
6
+ */
7
+ /**
8
+ * Base character info
9
+ */
10
+ type SlovakCharacterBaseInfo = {
11
+ char: string;
12
+ id: string;
13
+ display?: string;
14
+ audio?: string;
15
+ notes?: string;
16
+ };
17
+ /**
18
+ * Slovak Vowels
19
+ */
20
+ export type SlovakVowelsInfo = {
21
+ charType: "vowel";
22
+ ipa: string;
23
+ name: string;
24
+ length?: "short" | "long";
25
+ } & SlovakCharacterBaseInfo;
26
+ /**
27
+ * Slovak Consonants
28
+ */
29
+ export type SlovakConsonantsInfo = {
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
+ } & SlovakCharacterBaseInfo;
37
+ export type SlovakCharacter = SlovakVowelsInfo | SlovakConsonantsInfo;
38
+ export declare function isVowel(character: SlovakCharacter): character is SlovakVowelsInfo;
39
+ export declare function isConsonant(character: SlovakCharacter): character is SlovakConsonantsInfo;
40
+ export declare const slovakVowels: SlovakVowelsInfo[];
41
+ export declare const slovakConsonants: SlovakConsonantsInfo[];
42
+ export declare const slovakAllCharacters: (SlovakVowelsInfo | SlovakConsonantsInfo)[];
43
+ export {};
@@ -0,0 +1,75 @@
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: "o_circumflex", charType: "vowel", ipa: "oː", 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
+ { char: "ia", id: "ia", charType: "vowel", ipa: "ja", name: "IA", length: "short" },
25
+ { char: "ie", id: "ie", charType: "vowel", ipa: "jɛ", name: "IE", length: "short" },
26
+ { char: "iu", id: "iu", charType: "vowel", ipa: "ju", name: "IU", length: "short" }
27
+ ], c = [
28
+ // Bilabial consonants
29
+ { char: "b", id: "b", charType: "consonant", ipa: "b", name: "B", voicing: "voiced", articulation: "stop", place: "labial" },
30
+ { char: "p", id: "p", charType: "consonant", ipa: "p", name: "P", voicing: "voiceless", articulation: "stop", place: "labial" },
31
+ { char: "m", id: "m", charType: "consonant", ipa: "m", name: "M", voicing: "nasal", articulation: "nasal", place: "labial" },
32
+ // Labiodental consonants
33
+ { char: "f", id: "f", charType: "consonant", ipa: "f", name: "F", voicing: "voiceless", articulation: "fricative", place: "labial" },
34
+ { char: "v", id: "v", charType: "consonant", ipa: "v", name: "V", voicing: "voiced", articulation: "fricative", place: "labial" },
35
+ { char: "w", id: "w_foreign", charType: "consonant", ipa: "v", name: "W (foreign)", voicing: "voiced", articulation: "fricative", place: "labial" },
36
+ // Dental/Alveolar consonants
37
+ { char: "t", id: "t", charType: "consonant", ipa: "t", name: "T", voicing: "voiceless", articulation: "stop", place: "dental" },
38
+ { char: "d", id: "d", charType: "consonant", ipa: "d", name: "D", voicing: "voiced", articulation: "stop", place: "dental" },
39
+ { char: "ť", id: "t_caron", charType: "consonant", ipa: "c", name: "Ť", voicing: "voiceless", articulation: "stop", place: "palatal" },
40
+ { char: "ď", id: "d_caron", charType: "consonant", ipa: "ɟ", name: "Ď", voicing: "voiced", articulation: "stop", place: "palatal" },
41
+ { char: "ř", id: "r_caron", charType: "consonant", ipa: "r̝", name: "Ř", voicing: "trill", articulation: "trill", place: "alveolar" },
42
+ { char: "s", id: "s", charType: "consonant", ipa: "s", name: "S", voicing: "voiceless", articulation: "fricative", place: "alveolar" },
43
+ { char: "z", id: "z", charType: "consonant", ipa: "z", name: "Z", voicing: "voiced", articulation: "fricative", place: "alveolar" },
44
+ { char: "c", id: "c", charType: "consonant", ipa: "ts", name: "C", voicing: "voiceless", articulation: "affricate", place: "alveolar" },
45
+ { char: "č", id: "c_caron", charType: "consonant", ipa: "tʃ", name: "Č", voicing: "voiceless", articulation: "affricate", place: "postalveolar" },
46
+ { char: "š", id: "s_caron", charType: "consonant", ipa: "ʃ", name: "Š", voicing: "voiceless", articulation: "fricative", place: "postalveolar" },
47
+ { char: "ž", id: "z_caron", charType: "consonant", ipa: "ʒ", name: "Ž", voicing: "voiced", articulation: "fricative", place: "postalveolar" },
48
+ { char: "ň", id: "n_caron", charType: "consonant", ipa: "ɲ", name: "Ň", voicing: "nasal", articulation: "nasal", place: "palatal" },
49
+ { char: "ť", id: "ť_affricate", charType: "consonant", ipa: "cʰ", name: "Ť (affricate)", voicing: "voiceless", articulation: "affricate", place: "palatal" },
50
+ { char: "ď", id: "ď_affricate", charType: "consonant", ipa: "ɟʰ", name: "Ď (affricate)", voicing: "voiced", articulation: "affricate", place: "palatal" },
51
+ { char: "n", id: "n", charType: "consonant", ipa: "n", name: "N", voicing: "nasal", articulation: "nasal", place: "alveolar" },
52
+ { char: "l", id: "l", charType: "consonant", ipa: "l", name: "L", voicing: "lateral", articulation: "lateral", place: "alveolar" },
53
+ { char: "r", id: "r", charType: "consonant", ipa: "r", name: "R", voicing: "trill", articulation: "trill", place: "alveolar" },
54
+ { char: "j", id: "j", charType: "consonant", ipa: "j", name: "J", voicing: "voiced", articulation: "approximant", place: "palatal" },
55
+ // Velar consonants
56
+ { char: "k", id: "k", charType: "consonant", ipa: "k", name: "K", voicing: "voiceless", articulation: "stop", place: "velar" },
57
+ { char: "g", id: "g", charType: "consonant", ipa: "ɡ", name: "G", voicing: "voiced", articulation: "stop", place: "velar" },
58
+ { char: "h", id: "h", charType: "consonant", ipa: "x", name: "H", voicing: "voiceless", articulation: "fricative", place: "velar" },
59
+ { char: "ch", id: "ch", charType: "consonant", ipa: "x", name: "CH", voicing: "voiceless", articulation: "fricative", place: "velar" },
60
+ // Glottal
61
+ { char: "h", id: "h_glottal", charType: "consonant", ipa: "h", name: "H (glottal)", voicing: "voiceless", articulation: "fricative", place: "glottal" },
62
+ // Other consonants
63
+ { char: "q", id: "q_foreign", charType: "consonant", ipa: "k", name: "Q (foreign)", voicing: "voiceless", articulation: "stop", place: "velar" },
64
+ { char: "x", id: "x_foreign", charType: "consonant", ipa: "ks", name: "X (foreign)", voicing: "voiceless", articulation: "stop", place: "velar" }
65
+ ], o = [
66
+ ...i,
67
+ ...c
68
+ ];
69
+ export {
70
+ e as isConsonant,
71
+ n as isVowel,
72
+ o as slovakAllCharacters,
73
+ c as slovakConsonants,
74
+ i as slovakVowels
75
+ };
@@ -0,0 +1 @@
1
+ export { slovakVowels, slovakConsonants, slovakAllCharacters, type SlovakVowelsInfo, type SlovakConsonantsInfo, type SlovakCharacter, isVowel, isConsonant, } from './characters.js';
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ import { isConsonant as a, isVowel as l, slovakAllCharacters as n, slovakConsonants as e, slovakVowels as r } from "./characters.js";
2
+ export {
3
+ a as isConsonant,
4
+ l as isVowel,
5
+ n as slovakAllCharacters,
6
+ e as slovakConsonants,
7
+ r as slovakVowels
8
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@polyglot-bundles/sk-lang",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js",
10
+ "types": "./dist/index.d.ts"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "dependencies": {
20
+ "@polyglot-bundles/content-shared": "0.3.0"
21
+ },
22
+ "devDependencies": {
23
+ "vite": "^5.4.0",
24
+ "vite-plugin-dts": "^4.0.0",
25
+ "@polyglot-bundles/lang-tooling": "1.0.0"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/fustilio/polyglot-bundles.git",
30
+ "directory": "packages/sk/lang"
31
+ },
32
+ "scripts": {
33
+ "build": "vite build",
34
+ "clean": "rm -rf dist"
35
+ }
36
+ }