From 59ba8844e1fe1fbb9d498ca126e2c1583f481455 Mon Sep 17 00:00:00 2001 From: kkdev92 <112151103+kkdev92@users.noreply.github.com> Date: Tue, 18 Aug 2026 22:59:42 +0900 Subject: [PATCH] chore: give author a URL, pointing at kkdev92.dev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `author` was the bare string "kkdev92", so the published metadata carried a name with nothing behind it — `npm view @kkdev92/vscode-ext-kit author` returns `'kkdev92'`. The other three repositories already use the object form; this matches them, with the site rather than the GitHub profile. `repository` and `bugs` still point at GitHub, so nothing that led to the code moves. format:check passes and the packed manifest carries the new value. Co-Authored-By: Claude Opus 5 (1M context) --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 92333c2..326e52f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,10 @@ "name": "@kkdev92/vscode-ext-kit", "version": "3.0.0", "description": "A type-safe application framework for VS Code extension development", - "author": "kkdev92", + "author": { + "name": "kkdev92", + "url": "https://kkdev92.dev/" + }, "license": "MIT", "repository": { "type": "git",