@toolr/seedr 0.1.51 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +2 -5
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -165,7 +165,7 @@ function trackInstalls(slug, type, results, scope) {
165
165
  type,
166
166
  tool: result.tool,
167
167
  scope,
168
- version: "0.1.51"
168
+ version: "0.1.52"
169
169
  }),
170
170
  signal: AbortSignal.timeout(4e3)
171
171
  }).catch(() => {
@@ -646,10 +646,7 @@ async function installPluginForTool(item, tool, scope, method, cwd) {
646
646
  const pluginJson = await readJson(
647
647
  join3(tmpPath, ".claude-plugin", "plugin.json")
648
648
  );
649
- const marketplaceJson = await readJson(
650
- join3(tmpPath, ".claude-plugin", "marketplace.json")
651
- );
652
- const marketplace = marketplaceJson.name || item.author?.name || "seedr";
649
+ const marketplace = item.marketplace || item.author?.name || "seedr";
653
650
  const pluginName = pluginJson.name || item.slug;
654
651
  const version = pluginJson.version || "1.0.0";
655
652
  const pluginId = getPluginId(pluginName, marketplace);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolr/seedr",
3
- "version": "0.1.51",
3
+ "version": "0.1.52",
4
4
  "description": "Seed your projects with AI configurations",
5
5
  "type": "module",
6
6
  "bin": {