From a9bed68947b5cdbce5fe74d9541dbc7862c68f0d Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Mon, 7 Jul 2025 16:33:06 -0700 Subject: [PATCH] chore: normalize repository.url in package.json (#1474) I got this as a warning when doing `npm publish --dry-run`, so I ran `npm pkg fix` to create this PR, as instructed. --- codex-cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-cli/package.json b/codex-cli/package.json index d60b6ee9..b43184f9 100644 --- a/codex-cli/package.json +++ b/codex-cli/package.json @@ -84,6 +84,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/openai/codex" + "url": "git+https://github.com/openai/codex.git" } }