ccperm 1.9.3 → 1.9.5

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.
@@ -19,7 +19,7 @@ function toFileEntries(results) {
19
19
  groups.set(g.category, g.items.length);
20
20
  }
21
21
  const fileType = r.isGlobal ? 'global' : r.display.includes('settings.local.json') ? 'local' : 'shared';
22
- const name = r.isGlobal ? 'GLOBAL' : shortPath(r.display);
22
+ const name = r.isGlobal ? '~/.claude' : shortPath(r.display);
23
23
  return { display: r.display, shortName: name, totalCount: r.totalCount, groups, isGlobal: r.isGlobal, fileType };
24
24
  });
25
25
  }
@@ -143,7 +143,7 @@ function renderList(state, withPerms, emptyCount) {
143
143
  const truncName = r.shortName.length > nameWidth ? r.shortName.slice(0, nameWidth - 1) + '…' : r.shortName;
144
144
  const typeTag = r.isGlobal ? pad('', 7) : `${colors_js_1.DIM} ${pad(r.fileType, 6)}${colors_js_1.NC}`;
145
145
  const marker = isCursor ? `${colors_js_1.CYAN}▸ ` : ' ';
146
- const nameStyle = isCursor ? `${colors_js_1.BOLD}` : r.isGlobal ? `${colors_js_1.YELLOW}` : '';
146
+ const nameStyle = isCursor ? `${colors_js_1.BOLD}` : '';
147
147
  const nameCol = `${marker}${nameStyle}${pad(truncName, nameWidth)}${colors_js_1.NC}${typeTag}`;
148
148
  const catCols = catsPresent.map((c) => {
149
149
  const count = r.groups.get(c) || 0;
package/dist/renderer.js CHANGED
@@ -29,7 +29,7 @@ function printCompact(entries, summary) {
29
29
  const result = withPerms[i];
30
30
  const truncName = result.shortName.length > nameWidth ? result.shortName.slice(0, nameWidth - 1) + '…' : result.shortName;
31
31
  const typeTag = result.isGlobal ? pad('', 7) : `${colors_js_1.DIM} ${pad(result.fileType, 6)}${colors_js_1.NC}`;
32
- const nameStyle = result.isGlobal ? `${colors_js_1.YELLOW}` : '';
32
+ const nameStyle = '';
33
33
  const nameCol = ` ${nameStyle}${pad(truncName, nameWidth)}${colors_js_1.NC}${typeTag}`;
34
34
  const catCols = catsPresent.map((c) => {
35
35
  const count = result.groups.get(c) || 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccperm",
3
- "version": "1.9.3",
3
+ "version": "1.9.5",
4
4
  "description": "Audit Claude Code permissions across all your projects",
5
5
  "bin": {
6
6
  "ccperm": "bin/ccperm.js"