@korap/cmc-tagger 1.1.0 → 1.1.1

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## 1.1.1 - 2026-07-23
6
+
7
+ ### Changed
8
+
9
+ - The package is now published to the npm registry as the scoped package `@korap/cmc-tagger` and can be installed directly with `npm install @korap/cmc-tagger`.
10
+
5
11
  ## 1.1.0 - 2026-04-11
6
12
 
7
13
  ### Added
package/Readme.md CHANGED
@@ -151,7 +151,11 @@ Download pre-built executables from the [Releases](https://github.com/KorAP/KorA
151
151
  ### npm
152
152
 
153
153
  ```shell
154
- npm install 'git+https://gitlab.ids-mannheim.de/KorAP/conllu-cmc-docker.git'
154
+ # Install from the npm registry
155
+ npm install @korap/cmc-tagger
156
+
157
+ # Or install globally to use the cmc-tagger CLI anywhere
158
+ npm install -g @korap/cmc-tagger
155
159
  ```
156
160
 
157
161
  ### Build from source
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@korap/cmc-tagger",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,6 +27,10 @@
27
27
  },
28
28
  "author": "Marc Kupietz",
29
29
  "license": "BSD-2-Clause",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/KorAP/conllu-cmc.git"
33
+ },
30
34
  "dependencies": {
31
35
  "command-line-args": "^5.2.1",
32
36
  "command-line-usage": "^7.0.1",
@@ -54,4 +58,4 @@
54
58
  "child_process": "^1.0.2",
55
59
  "jest": "^30.3.0"
56
60
  }
57
- }
61
+ }