From f497d9123a936cbcb044a3a10c78b137e645c375 Mon Sep 17 00:00:00 2001 From: Anton Pascal Date: Wed, 18 Feb 2026 20:27:52 +0000 Subject: [PATCH] fix: correct repository URLs for npm listings --- packages/core/package.json | 6 ++++-- packages/viewer/package.json | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 7a12d9ce..dcdd397d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -54,8 +54,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/your-username/pascal-editor.git", + "url": "https://github.com/pascalorg/editor.git", "directory": "packages/core" }, - "license": "MIT" + "license": "MIT", + "homepage": "https://github.com/pascalorg/editor/tree/main/packages/core#readme", + "bugs": "https://github.com/pascalorg/editor/issues" } diff --git a/packages/viewer/package.json b/packages/viewer/package.json index 1014e372..945aa7f8 100644 --- a/packages/viewer/package.json +++ b/packages/viewer/package.json @@ -49,8 +49,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/your-username/pascal-editor.git", + "url": "https://github.com/pascalorg/editor.git", "directory": "packages/viewer" }, - "license": "MIT" + "license": "MIT", + "homepage": "https://github.com/pascalorg/editor/tree/main/packages/viewer#readme", + "bugs": "https://github.com/pascalorg/editor/issues" }