@diegopetrucci/pi-quiet-tools 0.1.4 → 0.1.6

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.
@@ -1 +1 @@
1
- 0.79.10
1
+ 0.80.6
package/index.ts CHANGED
@@ -307,6 +307,12 @@ function createQuietToolDefinitions(cwd: string, enabled: boolean): ToolDefiniti
307
307
  return enabled ? baseDefinitions.map(createQuietToolDefinition) : baseDefinitions;
308
308
  }
309
309
 
310
+ export const __testing = {
311
+ sanitizeInlineText,
312
+ formatQuietCallLine,
313
+ createQuietToolDefinition,
314
+ };
315
+
310
316
  export default function quietToolsExtension(pi: ExtensionAPI) {
311
317
  let enabled = true;
312
318
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-quiet-tools",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A pi extension that visually compacts collapsed built-in tool rows in the TUI without changing tool results sent to the model.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -31,5 +31,9 @@
31
31
  "peerDependencies": {
32
32
  "@earendil-works/pi-coding-agent": "*",
33
33
  "@earendil-works/pi-tui": "*"
34
+ },
35
+ "type": "module",
36
+ "engines": {
37
+ "node": ">=22.19.0"
34
38
  }
35
39
  }