From 3c1fa5d65fa188ccc13c3ac3640afc5028834ed8 Mon Sep 17 00:00:00 2001 From: Miguel Colmenares Date: Fri, 21 Aug 2026 11:08:21 -0500 Subject: [PATCH] chore: normalize the license field to the SPDX identifier Three spellings existed across the org's npm packages: - "Polyform Noncommercial License 1.0.0" (icons) - "PolyForm Noncommercial License 1.0.0" (consent-banner, performance-toolkit) - "PolyForm-Noncommercial-1.0.0" (recaptcha, agents-toolkit, next-testing-toolkit) Only the third is the actual SPDX identifier -- confirmed against https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html. Normalizing every package to it, matching the three that already had it right. The LICENSE file's own heading text is untouched -- that is prose from PolyForm's official license text, not an SPDX declaration. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a95a375..9d3ec6a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.5.0", "description": "PageSpeed Insights and Lighthouse CI integration for performance monitoring across SilverAssist projects", "author": "Miguel Colmenares ", - "license": "PolyForm Noncommercial License 1.0.0", + "license": "PolyForm-Noncommercial-1.0.0", "type": "module", "overrides": { "cookie": "^0.7.2",