From c77ddc99c4b5cef619763990d8ac819dc98886ab Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 00:41:48 +0000 Subject: [PATCH] fix: remove JSON-invalid comments from pnpm overrides The // comment syntax is not valid in JSON and causes pnpm install to fail with 'Invalid package.json in package.json'. Issue: PRI-803 Co-Authored-By: Paperclip --- package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/package.json b/package.json index bbfec0a..0f29a95 100644 --- a/package.json +++ b/package.json @@ -42,8 +42,6 @@ }, "pnpm": { "overrides": { - // elliptic >=6.6.1: no patched version exists yet (GHSA-848j-6mx2-7j84). - // This override prevents regression and will auto-resolve once upstream publishes a fix. "elliptic": ">=6.6.1" } }