veracarto 0.1.7 → 0.1.9

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.
package/README.md CHANGED
@@ -3,6 +3,12 @@
3
3
  Ingests GCP and GitHub security findings, traces them to your running
4
4
  infrastructure, and surfaces the few that are actually exploitable.
5
5
 
6
+ ## Requirements
7
+
8
+ - **Node.js** >= 20
9
+ - A **Google Cloud** project with read-only access (see Permissions below)
10
+ - A **GitHub** account (for Dependabot alert ingestion) and optionally **Slack** (for fix approvals)
11
+
6
12
  ## Setup (5 minutes)
7
13
 
8
14
  ### 1. Grant read-only access + enable APIs
package/dist/cli/index.js CHANGED
@@ -45142,7 +45142,7 @@ var {
45142
45142
  // src/cli/index.ts
45143
45143
  init_config();
45144
45144
  var program2 = new Command();
45145
- program2.name("veracarto").description("Security findings, down to what matters").version("0.1.7");
45145
+ program2.name("veracarto").description("Security findings, down to what matters").version("0.1.8");
45146
45146
  program2.command("init").description("Interactive onboarding wizard").option("--step <step>", "Jump to a specific step (gcp, github, slack)").action(async (opts) => {
45147
45147
  const { runInit: runInit2 } = await init_init().then(() => init_exports);
45148
45148
  await runInit2(opts.step);