@syllst/ja 0.1.2 → 0.2.4

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 syllst contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -145,7 +145,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
145
145
 
146
146
  :::
147
147
 
148
- :::exercise{id="ja-dial-04-decline" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
148
+ :::exercise{id="ja-dial-04-decline-ex" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
149
149
 
150
150
  **Question:** You have plans and cannot join. Decline politely using at least two phrases.
151
151
 
@@ -157,7 +157,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
157
157
 
158
158
  :::
159
159
 
160
- :::exercise{id="ja-dial-04-accept" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
160
+ :::exercise{id="ja-dial-04-accept-ex" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
161
161
 
162
162
  **Question:** A friend invites you to dinner. Which response is the most enthusiastic acceptance?
163
163
 
@@ -156,7 +156,7 @@ Getting around Japan requires knowing how to ask for directions and understand t
156
156
 
157
157
  :::
158
158
 
159
- :::exercise{id="ja-travel-04-landmarks" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
159
+ :::exercise{id="ja-travel-04-landmarks-ex" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
160
160
 
161
161
  **Question:** Which landmark is most reliable to ask for directions at in Japan?
162
162
 
@@ -162,7 +162,7 @@ Emergencies can happen to any traveler. Japan is one of the world's safest count
162
162
 
163
163
  :::
164
164
 
165
- :::exercise{id="ja-travel-07-illness" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
165
+ :::exercise{id="ja-travel-07-illness-ex" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
166
166
 
167
167
  **Question:** Which phrase do you use when you feel unwell?
168
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syllst/ja",
3
- "version": "0.1.2",
3
+ "version": "0.2.4",
4
4
  "description": "Japanese SYLLST content - Hiragana, Katakana, Essentials, Numbers, Food, Travel, and Dialogue syllabi",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,35 +8,43 @@
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js"
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
12
13
  },
13
14
  "./hiragana": {
14
15
  "types": "./dist/syllabi/hiragana/index.d.ts",
15
- "import": "./dist/syllabi/hiragana/index.js"
16
+ "import": "./dist/syllabi/hiragana/index.js",
17
+ "default": "./dist/syllabi/hiragana/index.js"
16
18
  },
17
19
  "./katakana": {
18
20
  "types": "./dist/syllabi/katakana/index.d.ts",
19
- "import": "./dist/syllabi/katakana/index.js"
21
+ "import": "./dist/syllabi/katakana/index.js",
22
+ "default": "./dist/syllabi/katakana/index.js"
20
23
  },
21
24
  "./essentials": {
22
25
  "types": "./dist/syllabi/essentials/index.d.ts",
23
- "import": "./dist/syllabi/essentials/index.js"
26
+ "import": "./dist/syllabi/essentials/index.js",
27
+ "default": "./dist/syllabi/essentials/index.js"
24
28
  },
25
29
  "./numbers": {
26
30
  "types": "./dist/syllabi/numbers/index.d.ts",
27
- "import": "./dist/syllabi/numbers/index.js"
31
+ "import": "./dist/syllabi/numbers/index.js",
32
+ "default": "./dist/syllabi/numbers/index.js"
28
33
  },
29
34
  "./food": {
30
35
  "types": "./dist/syllabi/food/index.d.ts",
31
- "import": "./dist/syllabi/food/index.js"
36
+ "import": "./dist/syllabi/food/index.js",
37
+ "default": "./dist/syllabi/food/index.js"
32
38
  },
33
39
  "./travel": {
34
40
  "types": "./dist/syllabi/travel/index.d.ts",
35
- "import": "./dist/syllabi/travel/index.js"
41
+ "import": "./dist/syllabi/travel/index.js",
42
+ "default": "./dist/syllabi/travel/index.js"
36
43
  },
37
44
  "./dialogue": {
38
45
  "types": "./dist/syllabi/dialogue/index.d.ts",
39
- "import": "./dist/syllabi/dialogue/index.js"
46
+ "import": "./dist/syllabi/dialogue/index.js",
47
+ "default": "./dist/syllabi/dialogue/index.js"
40
48
  }
41
49
  },
42
50
  "files": [
@@ -49,12 +57,11 @@
49
57
  "vite": "^7.3.1",
50
58
  "vite-plugin-dts": "^4.5.4",
51
59
  "vitest": "^4.0.18",
52
- "@laeng/ja": "0.1.1",
53
- "@syllst/content-shared": "0.2.2"
60
+ "@laeng/ja": "^0.1.3"
54
61
  },
55
62
  "peerDependencies": {
56
- "@syllst/core": "^0.4.2",
57
- "@syllst/processor": "^0.5.0"
63
+ "@syllst/core": "^0.5.2",
64
+ "@syllst/processor": "^0.5.3"
58
65
  },
59
66
  "publishConfig": {
60
67
  "access": "public"
@@ -145,7 +145,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
145
145
 
146
146
  :::
147
147
 
148
- :::exercise{id="ja-dial-04-decline" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
148
+ :::exercise{id="ja-dial-04-decline-ex" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
149
149
 
150
150
  **Question:** You have plans and cannot join. Decline politely using at least two phrases.
151
151
 
@@ -157,7 +157,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
157
157
 
158
158
  :::
159
159
 
160
- :::exercise{id="ja-dial-04-accept" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
160
+ :::exercise{id="ja-dial-04-accept-ex" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
161
161
 
162
162
  **Question:** A friend invites you to dinner. Which response is the most enthusiastic acceptance?
163
163
 
@@ -156,7 +156,7 @@ Getting around Japan requires knowing how to ask for directions and understand t
156
156
 
157
157
  :::
158
158
 
159
- :::exercise{id="ja-travel-04-landmarks" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
159
+ :::exercise{id="ja-travel-04-landmarks-ex" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
160
160
 
161
161
  **Question:** Which landmark is most reliable to ask for directions at in Japan?
162
162
 
@@ -162,7 +162,7 @@ Emergencies can happen to any traveler. Japan is one of the world's safest count
162
162
 
163
163
  :::
164
164
 
165
- :::exercise{id="ja-travel-07-illness" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
165
+ :::exercise{id="ja-travel-07-illness-ex" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
166
166
 
167
167
  **Question:** Which phrase do you use when you feel unwell?
168
168