shipready 1.5.2 → 1.5.3

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.
@@ -61,7 +61,7 @@ export function findRealLookingExampleValues(content) {
61
61
  if (eq <= 0)
62
62
  continue;
63
63
  const key = line.slice(0, eq).trim();
64
- let value = line.slice(eq + 1).trim().replace(/^["']|["']$/g, "");
64
+ const value = line.slice(eq + 1).trim().replace(/^["']|["']$/g, "");
65
65
  if (!value)
66
66
  continue;
67
67
  const lower = value.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shipready",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Pre-flight check for your repo before shipping. Scans AI-coded projects for secrets, env issues, debug leftovers, and generates AI-agent instruction files.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -59,9 +59,12 @@
59
59
  "picocolors": "^1.1.1"
60
60
  },
61
61
  "devDependencies": {
62
+ "@eslint/js": "^10.0.1",
62
63
  "@types/node": "^22.10.2",
64
+ "eslint": "^10.7.0",
63
65
  "tsx": "^4.19.2",
64
66
  "typescript": "^5.7.2",
67
+ "typescript-eslint": "^8.63.0",
65
68
  "vitest": "^2.1.8"
66
69
  }
67
70
  }