glost 0.2.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # glost
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Externalized language-specific helpers and data-dependent extensions into dedicated packages. Language helpers (`createThaiWord`, `createJapaneseWord`) moved to `glost-th` and `glost-ja`. Extensions (frequency, difficulty, POS, gender, clause-segmenter, transcription, translation) now require explicit data providers instead of fallback data. See `MIGRATION_EXTENSIONS.md` for migration guide.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - glost-common@0.1.3
13
+
3
14
  ## 0.2.0
4
15
 
5
16
  ### Minor Changes
package/README.md CHANGED
@@ -4,7 +4,7 @@ Core types and node creation for GLOST (Glossed Syntax Tree).
4
4
 
5
5
  ## What is GLOST?
6
6
 
7
- GLOST (Glossed Syntax Tree) is a Concrete Syntax Tree format that extends nlcst to support rich language learning annotations:
7
+ GLOST (Glossed Syntax Tree) is a Concrete Syntax Tree format that extends nlcst to support language learning annotations:
8
8
 
9
9
  - **Translations and glosses** in multiple languages
10
10
  - **Difficulty levels** and word frequency data
@@ -154,11 +154,11 @@ See [glost-ja documentation](../languages/ja/README.md).
154
154
 
155
155
  ## Features
156
156
 
157
- - Full TypeScript support
157
+ - TypeScript support
158
158
  - Extends nlcst (Natural Language Concrete Syntax Tree)
159
- - Compatible with unist ecosystem
159
+ - Aims for compatibility with unist ecosystem
160
160
  - Framework-agnostic
161
- - Zod validation schemas included
161
+ - Includes Zod validation schemas
162
162
 
163
163
  ## Related Packages
164
164
 
package/package.json CHANGED
@@ -1,7 +1,14 @@
1
1
  {
2
2
  "name": "glost",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "GLOST - Glossed Syntax Tree for augmenting text with language learning metadata",
5
+ "author": "fustilio",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/fustilio/glost.git",
10
+ "directory": "packages/core"
11
+ },
5
12
  "type": "module",
6
13
  "main": "./src/index.ts",
7
14
  "types": "./src/index.ts",
@@ -38,7 +45,7 @@
38
45
  "unist-util-select": "^5.1.0",
39
46
  "unist-util-visit": "^5.0.0",
40
47
  "zod": "^3.23.8",
41
- "glost-common": "0.1.2"
48
+ "glost-common": "0.1.3"
42
49
  },
43
50
  "devDependencies": {
44
51
  "@types/nlcst": "^2.0.3",