From 26ff5143522b2ca3afc34f50c63503f9cad0e9cb Mon Sep 17 00:00:00 2001 From: Adarsh Prashar Date: Sat, 13 Jun 2026 01:44:48 +0530 Subject: [PATCH] chore(sdk): canonicalize the TS package repository URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the canonical `git+https://…/riskkernel.git` form for repository.url so `npm publish` no longer auto-corrects it with a warning. Metadata only. --- sdks/typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/typescript/package.json b/sdks/typescript/package.json index ee01aa5..c48ec59 100644 --- a/sdks/typescript/package.json +++ b/sdks/typescript/package.json @@ -6,7 +6,7 @@ "author": "Adarsh Prashar", "repository": { "type": "git", - "url": "https://github.com/prashar32/riskkernel", + "url": "git+https://github.com/prashar32/riskkernel.git", "directory": "sdks/typescript" }, "homepage": "https://github.com/prashar32/riskkernel",