@polyglot-bundles/sl-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.
- package/dist/characters.d.ts +43 -0
- package/dist/characters.js +75 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/package.json +36 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Slovenian Character Types
|
|
3
|
+
*
|
|
4
|
+
* Type definitions for Slovenian characters (Latin script with diacritics).
|
|
5
|
+
* Slovenian has 36 letters: 8 vowels (including 2 diphthongs), 28 consonants.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Base character info
|
|
9
|
+
*/
|
|
10
|
+
type SlovenianCharacterBaseInfo = {
|
|
11
|
+
char: string;
|
|
12
|
+
id: string;
|
|
13
|
+
display?: string;
|
|
14
|
+
audio?: string;
|
|
15
|
+
notes?: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Slovenian Vowels
|
|
19
|
+
*/
|
|
20
|
+
export type SlovenianVowelsInfo = {
|
|
21
|
+
charType: "vowel";
|
|
22
|
+
ipa: string;
|
|
23
|
+
name: string;
|
|
24
|
+
length?: "short" | "long";
|
|
25
|
+
} & SlovenianCharacterBaseInfo;
|
|
26
|
+
/**
|
|
27
|
+
* Slovenian Consonants
|
|
28
|
+
*/
|
|
29
|
+
export type SlovenianConsonantsInfo = {
|
|
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";
|
|
36
|
+
} & SlovenianCharacterBaseInfo;
|
|
37
|
+
export type SlovenianCharacter = SlovenianVowelsInfo | SlovenianConsonantsInfo;
|
|
38
|
+
export declare function isVowel(character: SlovenianCharacter): character is SlovenianVowelsInfo;
|
|
39
|
+
export declare function isConsonant(character: SlovenianCharacter): character is SlovenianConsonantsInfo;
|
|
40
|
+
export declare const slovenianVowels: SlovenianVowelsInfo[];
|
|
41
|
+
export declare const slovenianConsonants: SlovenianConsonantsInfo[];
|
|
42
|
+
export declare const slovenianAllCharacters: (SlovenianVowelsInfo | SlovenianConsonantsInfo)[];
|
|
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
|
+
// Diphthongs
|
|
21
|
+
{ char: "ai", id: "ai", charType: "vowel", ipa: "aj", name: "AI", length: "short" },
|
|
22
|
+
{ char: "au", id: "au", charType: "vowel", ipa: "aʊ", name: "AU", length: "short" },
|
|
23
|
+
{ char: "ej", id: "ej", charType: "vowel", ipa: "ɛj", name: "EJ", length: "short" },
|
|
24
|
+
{ char: "oj", id: "oj", charType: "vowel", ipa: "ɔj", name: "OJ", length: "short" },
|
|
25
|
+
{ char: "uj", id: "uj", charType: "vowel", ipa: "uj", name: "UJ", length: "short" },
|
|
26
|
+
{ char: "ie", id: "ie", charType: "vowel", ipa: "iə", name: "IE", length: "short" },
|
|
27
|
+
{ char: "uo", id: "uo", charType: "vowel", ipa: "uɔ", name: "UO", length: "short" }
|
|
28
|
+
], c = [
|
|
29
|
+
// Bilabial consonants
|
|
30
|
+
{ char: "b", id: "b", charType: "consonant", ipa: "b", name: "B", voicing: "voiced", articulation: "stop", place: "labial" },
|
|
31
|
+
{ char: "p", id: "p", charType: "consonant", ipa: "p", name: "P", voicing: "voiceless", articulation: "stop", place: "labial" },
|
|
32
|
+
{ char: "m", id: "m", charType: "consonant", ipa: "m", name: "M", voicing: "nasal", articulation: "nasal", place: "labial" },
|
|
33
|
+
// Labiodental consonants
|
|
34
|
+
{ char: "f", id: "f", charType: "consonant", ipa: "f", name: "F", voicing: "voiceless", articulation: "fricative", place: "labial" },
|
|
35
|
+
{ char: "v", id: "v", charType: "consonant", ipa: "v", name: "V", 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: "s", id: "s", charType: "consonant", ipa: "s", name: "S", voicing: "voiceless", articulation: "fricative", place: "alveolar" },
|
|
40
|
+
{ char: "z", id: "z", charType: "consonant", ipa: "z", name: "Z", voicing: "voiced", articulation: "fricative", place: "alveolar" },
|
|
41
|
+
{ char: "c", id: "c", charType: "consonant", ipa: "ts", name: "C", voicing: "voiceless", articulation: "affricate", place: "alveolar" },
|
|
42
|
+
{ char: "č", id: "c_caron", charType: "consonant", ipa: "tʃ", name: "Č", voicing: "voiceless", articulation: "affricate", place: "postalveolar" },
|
|
43
|
+
{ char: "š", id: "s_caron", charType: "consonant", ipa: "ʃ", name: "Š", voicing: "voiceless", articulation: "fricative", place: "postalveolar" },
|
|
44
|
+
{ char: "ž", id: "z_caron", charType: "consonant", ipa: "ʒ", name: "Ž", voicing: "voiced", articulation: "fricative", place: "postalveolar" },
|
|
45
|
+
{ char: "n", id: "n", charType: "consonant", ipa: "n", name: "N", voicing: "nasal", articulation: "nasal", place: "alveolar" },
|
|
46
|
+
{ char: "l", id: "l", charType: "consonant", ipa: "l", name: "L", voicing: "lateral", articulation: "lateral", place: "alveolar" },
|
|
47
|
+
{ char: "r", id: "r", charType: "consonant", ipa: "r", name: "R", voicing: "trill", articulation: "trill", place: "alveolar" },
|
|
48
|
+
// Palatal consonants
|
|
49
|
+
{ char: "j", id: "j", charType: "consonant", ipa: "j", name: "J", voicing: "voiced", articulation: "approximant", place: "palatal" },
|
|
50
|
+
{ char: "lj", id: "lj", charType: "consonant", ipa: "lj", name: "LJ", voicing: "lateral", articulation: "lateral", place: "palatal" },
|
|
51
|
+
{ char: "nj", id: "nj", charType: "consonant", ipa: "nj", name: "NJ", voicing: "nasal", articulation: "nasal", place: "palatal" },
|
|
52
|
+
{ char: "čj", id: "čj", charType: "consonant", ipa: "tʃj", name: "ČJ", voicing: "voiceless", articulation: "affricate", place: "palatal" },
|
|
53
|
+
{ char: "šj", id: "šj", charType: "consonant", ipa: "ʃj", name: "ŠJ", voicing: "voiceless", articulation: "fricative", place: "palatal" },
|
|
54
|
+
{ char: "žj", id: "žj", charType: "consonant", ipa: "ʒj", name: "ŽJ", voicing: "voiced", articulation: "fricative", 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: "kh", id: "kh", charType: "consonant", ipa: "x", name: "KH", voicing: "voiceless", articulation: "fricative", place: "velar" },
|
|
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
|
+
{ char: "y", id: "y_foreign", charType: "consonant", ipa: "i", name: "Y (foreign)", voicing: "voiced", articulation: "approximant", place: "palatal" }
|
|
65
|
+
], o = [
|
|
66
|
+
...i,
|
|
67
|
+
...c
|
|
68
|
+
];
|
|
69
|
+
export {
|
|
70
|
+
e as isConsonant,
|
|
71
|
+
n as isVowel,
|
|
72
|
+
o as slovenianAllCharacters,
|
|
73
|
+
c as slovenianConsonants,
|
|
74
|
+
i as slovenianVowels
|
|
75
|
+
};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { slovenianVowels, slovenianConsonants, slovenianAllCharacters, type SlovenianVowelsInfo, type SlovenianConsonantsInfo, type SlovenianCharacter, isVowel, isConsonant, } from './characters.js';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { isConsonant as s, isVowel as a, slovenianAllCharacters as e, slovenianConsonants as l, slovenianVowels as i } from "./characters.js";
|
|
2
|
+
export {
|
|
3
|
+
s as isConsonant,
|
|
4
|
+
a as isVowel,
|
|
5
|
+
e as slovenianAllCharacters,
|
|
6
|
+
l as slovenianConsonants,
|
|
7
|
+
i as slovenianVowels
|
|
8
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polyglot-bundles/sl-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/sl/lang"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "vite build",
|
|
34
|
+
"clean": "rm -rf dist"
|
|
35
|
+
}
|
|
36
|
+
}
|