Turn it into KoralPipe-TermMapper
diff --git a/.gitignore b/.gitignore
index e7534b5..af7cd3e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@
 testdata/sandbox
 examples/
 README.md
+/vendor
 /termmapper
\ No newline at end of file
diff --git a/cmd/termmapper/fuzz_test.go b/cmd/termmapper/fuzz_test.go
index 3075b31..6727b5c 100644
--- a/cmd/termmapper/fuzz_test.go
+++ b/cmd/termmapper/fuzz_test.go
@@ -13,7 +13,7 @@
 	"strings"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/mapper"
+	"github.com/KorAP/KoralPipe-TermMapper/mapper"
 	"github.com/gofiber/fiber/v2"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
diff --git a/cmd/termmapper/main.go b/cmd/termmapper/main.go
index f962d7b..c31b6b1 100644
--- a/cmd/termmapper/main.go
+++ b/cmd/termmapper/main.go
@@ -8,7 +8,7 @@
 	"strings"
 	"syscall"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/mapper"
+	"github.com/KorAP/KoralPipe-TermMapper/mapper"
 	"github.com/gofiber/fiber/v2"
 	"github.com/rs/zerolog"
 	"github.com/rs/zerolog/log"
diff --git a/cmd/termmapper/main_test.go b/cmd/termmapper/main_test.go
index bd9f72e..6460ae7 100644
--- a/cmd/termmapper/main_test.go
+++ b/cmd/termmapper/main_test.go
@@ -10,7 +10,7 @@
 	"path/filepath"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/mapper"
+	"github.com/KorAP/KoralPipe-TermMapper/mapper"
 	"github.com/gofiber/fiber/v2"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
diff --git a/config/config.go b/config/config.go
index 6394337..be9860b 100644
--- a/config/config.go
+++ b/config/config.go
@@ -4,8 +4,8 @@
 	"fmt"
 	"os"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
-	"github.com/KorAP/KoralPipe-TermMapper2/parser"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/parser"
 	"gopkg.in/yaml.v3"
 )
 
diff --git a/config/config_test.go b/config/config_test.go
index 0d0e5cc..3df7bfa 100644
--- a/config/config_test.go
+++ b/config/config_test.go
@@ -4,7 +4,7 @@
 	"os"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 )
diff --git a/go.mod b/go.mod
index 190aa82..e6f4c32 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/KorAP/KoralPipe-TermMapper2
+module github.com/KorAP/KoralPipe-TermMapper
 
 go 1.23.0
 
diff --git a/mapper/mapper.go b/mapper/mapper.go
index 2747e86..b7c8066 100644
--- a/mapper/mapper.go
+++ b/mapper/mapper.go
@@ -4,10 +4,10 @@
 	"encoding/json"
 	"fmt"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
-	"github.com/KorAP/KoralPipe-TermMapper2/config"
-	"github.com/KorAP/KoralPipe-TermMapper2/matcher"
-	"github.com/KorAP/KoralPipe-TermMapper2/parser"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/config"
+	"github.com/KorAP/KoralPipe-TermMapper/matcher"
+	"github.com/KorAP/KoralPipe-TermMapper/parser"
 )
 
 // Direction represents the mapping direction (A to B or B to A)
diff --git a/mapper/mapper_test.go b/mapper/mapper_test.go
index 89e65be..d5d4020 100644
--- a/mapper/mapper_test.go
+++ b/mapper/mapper_test.go
@@ -6,8 +6,8 @@
 	"path/filepath"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
-	"github.com/KorAP/KoralPipe-TermMapper2/matcher"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/matcher"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 )
diff --git a/matcher/matcher.go b/matcher/matcher.go
index 7542bdf..3b496b2 100644
--- a/matcher/matcher.go
+++ b/matcher/matcher.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 )
 
 // Matcher handles pattern matching and replacement in the AST
diff --git a/matcher/matcher_test.go b/matcher/matcher_test.go
index 3f05edc..994334c 100644
--- a/matcher/matcher_test.go
+++ b/matcher/matcher_test.go
@@ -7,7 +7,7 @@
 	"encoding/json"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/parser/grammar_parser.go b/parser/grammar_parser.go
index 3701d49..5bed828 100644
--- a/parser/grammar_parser.go
+++ b/parser/grammar_parser.go
@@ -4,7 +4,7 @@
 	"fmt"
 	"strings"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 	"github.com/alecthomas/participle/v2"
 	"github.com/alecthomas/participle/v2/lexer"
 )
diff --git a/parser/grammar_parser_test.go b/parser/grammar_parser_test.go
index d9e5534..f7fefc9 100644
--- a/parser/grammar_parser_test.go
+++ b/parser/grammar_parser_test.go
@@ -3,7 +3,7 @@
 import (
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 )
diff --git a/parser/parser.go b/parser/parser.go
index d81c3b0..4f8c3bc 100644
--- a/parser/parser.go
+++ b/parser/parser.go
@@ -8,7 +8,7 @@
 	"fmt"
 	"strings"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 )
 
 // rawNode represents the raw JSON structure
diff --git a/parser/parser_test.go b/parser/parser_test.go
index 93bb2e5..c2f1f6b 100644
--- a/parser/parser_test.go
+++ b/parser/parser_test.go
@@ -4,7 +4,7 @@
 	"encoding/json"
 	"testing"
 
-	"github.com/KorAP/KoralPipe-TermMapper2/ast"
+	"github.com/KorAP/KoralPipe-TermMapper/ast"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 )