From 2474a2cd0908b09fbd8cdf640babcc8f4c0d627a Mon Sep 17 00:00:00 2001 From: anurag629 Date: Sat, 7 Mar 2026 23:43:06 +0530 Subject: [PATCH] fix: add repository field to all packages for npm provenance validation --- packages/core/package.json | 5 +++++ packages/server/package.json | 5 +++++ packages/widget/package.json | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/packages/core/package.json b/packages/core/package.json index 071f03b..4e60e47 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -31,6 +31,11 @@ "typescript": "^5.7.0", "vitest": "^3.0.0" }, + "repository": { + "type": "git", + "url": "https://github.com/codercops/chatcops", + "directory": "packages/core" + }, "publishConfig": { "access": "public" }, diff --git a/packages/server/package.json b/packages/server/package.json index a8a52ce..52d7a14 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -50,6 +50,11 @@ "vitest": "^3.0.0", "@types/express": "^5.0.0" }, + "repository": { + "type": "git", + "url": "https://github.com/codercops/chatcops", + "directory": "packages/server" + }, "publishConfig": { "access": "public" }, diff --git a/packages/widget/package.json b/packages/widget/package.json index fdbbcca..9bd76d9 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -31,6 +31,11 @@ "vitest": "^3.0.0", "happy-dom": "^16.0.0" }, + "repository": { + "type": "git", + "url": "https://github.com/codercops/chatcops", + "directory": "packages/widget" + }, "publishConfig": { "access": "public" },