From aad99ed26794f05481a6c4134e2a78d521cf3e53 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Sun, 28 Apr 2024 10:17:27 +0100 Subject: [PATCH] Change package name to avoid name similarity issue npm refuses to publish the package under the name `ocrs` due to similarity to the existing package name `cors`. Take npm's suggestion and scope it under my username. --- js/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/package.json b/js/package.json index b32ecc6..9f2af31 100644 --- a/js/package.json +++ b/js/package.json @@ -1,5 +1,5 @@ { - "name": "ocrs", + "name": "@robertknight/ocrs", "version": "0.1.0", "description": "Ocrs is a library for extracting text from images", "type": "module",