From e64023c18f3eedc35998e9cc64505976f8251f41 Mon Sep 17 00:00:00 2001 From: mynameistito Date: Thu, 15 Jan 2026 12:49:52 +1300 Subject: [PATCH] feat: add license and metadata to package.json - Add MIT license field - Add repository, homepage, and bugs URLs - Add description for the package - Add relevant keywords (anthropic, auth, opencode, openauth, plugin) - Add original author attribution (anomalyco) Fixes #5 --- package.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/package.json b/package.json index 910f94e..e7a4c99 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,25 @@ { "name": "opencode-anthropic-auth", "version": "0.0.9", + "description": "Anthropic auth plugin for OpenCode", "main": "./index.mjs", + "repository": { + "type": "git", + "url": "https://github.com/anomalyco/opencode-anthropic-auth.git" + }, + "homepage": "https://github.com/anomalyco/opencode-anthropic-auth", + "bugs": { + "url": "https://github.com/anomalyco/opencode-anthropic-auth/issues" + }, + "license": "MIT", + "keywords": [ + "anthropic", + "auth", + "opencode", + "openauth", + "plugin" + ], + "author": "anomalyco", "devDependencies": { "@opencode-ai/plugin": "^0.4.45" },