From eea4030293bfd8c014c49c49fcc19fe38b501226 Mon Sep 17 00:00:00 2001 From: Killernova Date: Wed, 17 Jun 2026 15:53:21 +0800 Subject: [PATCH] chore: add homepage and bugs metadata to package.json Add missing npm metadata fields for react-compiler-webpack: - homepage: link to repo README - bugs.url: link to GitHub issue tracker Ref: charles-openclaw/charles-microbounties#1612 --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index cfc9973..4d243a5 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,10 @@ "version": "1.0.1", "description": "The webpack/Next.js Plugin for React Compiler", "repository": "https://github.com/SukkaW/react-compiler-webpack", + "homepage": "https://github.com/SukkaW/react-compiler-webpack#readme", + "bugs": { + "url": "https://github.com/SukkaW/react-compiler-webpack/issues" + }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts",