@polyglot-bundles/lo-minimal-pairs 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/data.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import { MinimalPairsLanguageData } from '../../content-shared';
2
+ export declare const minimalPairsData: MinimalPairsLanguageData;
3
+ export default minimalPairsData;
4
+ //# sourceMappingURL=data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../src/data.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AAEjF,eAAO,MAAM,gBAAgB,EAAE,wBAW9B,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
package/dist/data.js ADDED
@@ -0,0 +1,16 @@
1
+ const e = {
2
+ levels: [
3
+ { level: 0, title: "Getting Started", description: "Practice with clearly different sounds" },
4
+ { level: 1, title: "Basic Contrasts", description: "Common minimal pairs" },
5
+ { level: 2, title: "Vowels", description: "Vowel distinctions" },
6
+ { level: 3, title: "Consonants", description: "Consonant contrasts" },
7
+ { level: 4, title: "Advanced", description: "More challenging distinctions" },
8
+ { level: 5, title: "Expert Level", description: "Subtle differences" }
9
+ ],
10
+ minimalPairs: [],
11
+ pronunciationTips: {}
12
+ };
13
+ export {
14
+ e as default,
15
+ e as minimalPairsData
16
+ };
@@ -0,0 +1,3 @@
1
+ export { minimalPairsData } from './data';
2
+ export default minimalPairsData;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAE1C,eAAe,gBAAgB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ import { default as m } from "./data.js";
2
+ const a = minimalPairsData;
3
+ export {
4
+ a as default,
5
+ m as minimalPairsData
6
+ };
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@polyglot-bundles/lo-minimal-pairs",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ },
12
+ "./data": {
13
+ "types": "./dist/data.d.ts",
14
+ "import": "./dist/data.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "dependencies": {
21
+ "@polyglot-bundles/content-shared": "^0.2.0",
22
+ "@polyglot-bundles/lo-lang": "0.2.0"
23
+ },
24
+ "devDependencies": {
25
+ "vite": "^5.4.0",
26
+ "vite-plugin-dts": "^4.0.0"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/fustilio/polyglot-bundles",
34
+ "directory": "packages/lo/minimal-pairs"
35
+ },
36
+ "scripts": {
37
+ "build": "vite build",
38
+ "clean": "rm -rf dist"
39
+ }
40
+ }