From 0370b86af23a0cd76f8214c92673438a8c6d1867 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 08:17:54 -0500 Subject: [PATCH] feat: add repository metadata to package.json (#11) Add repository, bugs, homepage, author, and license fields to enable GitHub link in Headlamp plugin UI. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-authored-by: Claude Co-authored-by: Happy --- package.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/package.json b/package.json index b10e78c..673109e 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,16 @@ "name": "polaris", "version": "0.3.5", "description": "Headlamp plugin for Fairwinds Polaris audit results", + "repository": { + "type": "git", + "url": "https://github.com/cpfarhood/headlamp-polaris-plugin.git" + }, + "bugs": { + "url": "https://github.com/cpfarhood/headlamp-polaris-plugin/issues" + }, + "homepage": "https://github.com/cpfarhood/headlamp-polaris-plugin#readme", + "author": "cpfarhood", + "license": "Apache-2.0", "scripts": { "start": "headlamp-plugin start", "build": "headlamp-plugin build",