ship-safe 5.0.0 → 6.0.0

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.
@@ -66,7 +66,7 @@ export function generatePDF(htmlPath, outputPath) {
66
66
  '--print-to-pdf-no-header',
67
67
  htmlPath,
68
68
  ];
69
- execFileSync(chrome, args, { timeout: 30000, stdio: 'pipe' });
69
+ execFileSync(chrome, args, { timeout: 30000, stdio: 'pipe' }); // ship-safe-ignore — execFileSync with fixed chrome binary path; no user input in command
70
70
  return outputPath;
71
71
  } catch {
72
72
  return null;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ship-safe",
3
- "version": "5.0.0",
4
- "description": "AI-powered multi-agent security platform. 16 agents scan 80+ attack classes with LLM-powered deep analysis. Red team your code before attackers do.",
3
+ "version": "6.0.0",
4
+ "description": "AI-powered multi-agent security platform. 17 agents scan 80+ attack classes with LLM-powered deep analysis. Red team your code before attackers do.",
5
5
  "main": "cli/index.js",
6
6
  "bin": {
7
7
  "ship-safe": "cli/bin/ship-safe.js"