@lousy-agents/mcp 5.17.9 → 5.17.11

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.
@@ -29503,7 +29503,15 @@ function isWindowsNetworkPath(filePath, platform = process.platform) {
29503
29503
  return false;
29504
29504
  }
29505
29505
  const normalized = filePath.replace(/\//g, "\\");
29506
- return normalized.startsWith("\\\\?\\UNC\\") || normalized.startsWith("\\\\");
29506
+ const extendedDrive = normalized.length >= 7 &&
29507
+ normalized.startsWith("\\\\?\\") &&
29508
+ /^[a-z]$/i.test(normalized[4] ?? "") &&
29509
+ normalized[5] === ":" &&
29510
+ normalized[6] === "\\";
29511
+ if (extendedDrive) {
29512
+ return false;
29513
+ }
29514
+ return normalized.startsWith("\\\\");
29507
29515
  }
29508
29516
  function isWindowsDriveLetterPath(filePath, platform = process.platform) {
29509
29517
  return platform === "win32" && /^[A-Za-z]:[\\/]/.test(filePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lousy-agents/mcp",
3
- "version": "5.17.9",
3
+ "version": "5.17.11",
4
4
  "description": "MCP server for lousy-agents - provides AI coding assistant tools via the Model Context Protocol",
5
5
  "type": "module",
6
6
  "repository": {