Release 1.1.1: install via npm, drop self-dependency

Bump to 1.1.1, remove the accidental self-dependency on
@korap/cmc-tagger, document direct `npm install @korap/cmc-tagger`
in the readme, and add the changelog entry.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Change-Id: Id0b1c81df738a935fdd329fc9c4064744adbae0f
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6ffaed2..f9ca279 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
 
 All notable changes to this project are documented in this file.
 
+## 1.1.1 - 2026-07-23
+
+### Changed
+
+- 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`.
+
 ## 1.1.0 - 2026-04-11
 
 ### Added
diff --git a/Readme.md b/Readme.md
index c03e265..1d927e8 100644
--- a/Readme.md
+++ b/Readme.md
@@ -151,7 +151,11 @@
 ### npm
 
 ```shell
-npm install 'git+https://gitlab.ids-mannheim.de/KorAP/conllu-cmc-docker.git'
+# Install from the npm registry
+npm install @korap/cmc-tagger
+
+# Or install globally to use the cmc-tagger CLI anywhere
+npm install -g @korap/cmc-tagger
 ```
 
 ### Build from source
diff --git a/package-lock.json b/package-lock.json
index 08e36d3..05d72b0 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
-  "name": "conllu-cmc",
-  "version": "1.1.0",
+  "name": "@korap/cmc-tagger",
+  "version": "1.1.1",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
-      "name": "conllu-cmc",
-      "version": "1.1.0",
+      "name": "@korap/cmc-tagger",
+      "version": "1.1.1",
       "license": "BSD-2-Clause",
       "dependencies": {
         "command-line-args": "^5.2.1",
diff --git a/package.json b/package.json
index 0eadcb0..9039cd1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@korap/cmc-tagger",
-  "version": "1.1.0",
+  "version": "1.1.1",
   "publishConfig": {
     "access": "public"
   },
@@ -54,4 +54,4 @@
     "child_process": "^1.0.2",
     "jest": "^30.3.0"
   }
-}
\ No newline at end of file
+}