stack-cleaner 1.2.1 → 1.2.2

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/package.json +22 -2
  2. package/public/scan.mjs +1 -1
package/package.json CHANGED
@@ -1,9 +1,29 @@
1
1
  {
2
2
  "name": "stack-cleaner",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "private": false,
5
5
  "license": "MIT",
6
- "description": "See, organize, and clean up your Claude Code skills, plugins, MCP servers, and agents (split by global vs. project).",
6
+ "description": "See, organize, and clean up your Claude Code skills, plugins, MCP servers, and agents (split by global vs. project), with real usage counts and duplicate detection.",
7
+ "homepage": "https://stackcleaner.com",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/BespokeWoodcraftStudio/stack-cleaner.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/BespokeWoodcraftStudio/stack-cleaner/issues"
14
+ },
15
+ "keywords": [
16
+ "claude",
17
+ "claude-code",
18
+ "skills",
19
+ "plugins",
20
+ "mcp",
21
+ "agents",
22
+ "cleanup",
23
+ "inventory",
24
+ "cli",
25
+ "developer-tools"
26
+ ],
7
27
  "bin": {
8
28
  "stack-cleaner": "bin/cli.mjs"
9
29
  },
package/public/scan.mjs CHANGED
@@ -36,7 +36,7 @@ import readline from "node:readline";
36
36
  import { pathToFileURL } from "node:url";
37
37
 
38
38
  const SCHEMA_VERSION = 2;
39
- const GENERATOR = "scan.mjs@1.2.1";
39
+ const GENERATOR = "scan.mjs@1.2.2";
40
40
  const HOME = os.homedir();
41
41
  const CLAUDE = path.join(HOME, ".claude");
42
42