From 72de58a0cd5d4d26a42182aac64e8b9fa14e175a Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Wed, 11 Feb 2026 02:35:43 -0800 Subject: [PATCH] fix: include .opencode/ in npm package files and add opencode keyword The .opencode/ directory was missing from the files array, so the npm package only shipped Claude Code and Cursor configs. Selectively include .opencode/ subdirectories to avoid bundling node_modules and dist. --- package.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0d33a64..5d40ee5 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "automation", "best-practices", "cursor", - "cursor-ide" + "cursor-ide", + "opencode" ], "author": { "name": "Affaan Mustafa", @@ -35,6 +36,17 @@ }, "files": [ ".cursor/", + ".opencode/commands/", + ".opencode/instructions/", + ".opencode/plugins/", + ".opencode/prompts/", + ".opencode/tools/", + ".opencode/index.ts", + ".opencode/opencode.json", + ".opencode/package.json", + ".opencode/tsconfig.json", + ".opencode/MIGRATION.md", + ".opencode/README.md", "agents/", "commands/", "contexts/",