@quantracode/vibecheck 0.2.2 → 0.2.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.
package/dist/index.d.ts CHANGED
@@ -1 +1,4 @@
1
1
  #!/usr/bin/env node
2
+ declare const CLI_VERSION = "0.2.3";
3
+
4
+ export { CLI_VERSION };
package/dist/index.js CHANGED
@@ -5596,7 +5596,7 @@ function createArtifact(findings, targetDir, fileCount, repoName, metrics, phase
5596
5596
  generatedAt: (/* @__PURE__ */ new Date()).toISOString(),
5597
5597
  tool: {
5598
5598
  name: "vibecheck",
5599
- version: "0.0.1"
5599
+ version: CLI_VERSION
5600
5600
  },
5601
5601
  repo: {
5602
5602
  name,
@@ -9003,8 +9003,9 @@ async function keygenAction() {
9003
9003
  }
9004
9004
 
9005
9005
  // src/index.ts
9006
+ var CLI_VERSION = "0.2.3";
9006
9007
  var program = new Command();
9007
- program.name("vibecheck").description("Security scanner for modern web applications").version("0.0.1");
9008
+ program.name("vibecheck").description("Security scanner for modern web applications").version(CLI_VERSION);
9008
9009
  registerScanCommand(program);
9009
9010
  registerExplainCommand(program);
9010
9011
  registerDemoArtifactCommand(program);
@@ -9014,3 +9015,6 @@ registerWaiversCommand(program);
9014
9015
  registerViewCommand(program);
9015
9016
  registerLicenseCommand(program);
9016
9017
  program.parse();
9018
+ export {
9019
+ CLI_VERSION
9020
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantracode/vibecheck",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Security scanner for modern web applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",