@sentriflow/cli 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10407,7 +10407,7 @@ function generateSarif(results, filePath, rules, options = {}) {
10407
10407
  tool: {
10408
10408
  driver: {
10409
10409
  name: "Sentriflow",
10410
- version: "0.1.1",
10410
+ version: "0.1.2",
10411
10411
  informationUri: "https://github.com/sentriflow/sentriflow",
10412
10412
  rules: sarifRules,
10413
10413
  // SEC-007: Include CWE taxonomy when rules reference it
@@ -10513,7 +10513,7 @@ function generateMultiFileSarif(fileResults, rules, options = {}) {
10513
10513
  tool: {
10514
10514
  driver: {
10515
10515
  name: "Sentriflow",
10516
- version: "0.1.1",
10516
+ version: "0.1.2",
10517
10517
  informationUri: "https://github.com/sentriflow/sentriflow",
10518
10518
  rules: sarifRules,
10519
10519
  // SEC-007: Include CWE taxonomy when rules reference it
@@ -14194,7 +14194,7 @@ function validateDirectoryPath(dirPath, allowedBaseDirs) {
14194
14194
 
14195
14195
  // index.ts
14196
14196
  var program = new Command();
14197
- program.name("sentriflow").description("SentriFlow Network Configuration Validator").version("0.1.1").argument("[file]", "Path to the configuration file").option("--ast", "Output the AST instead of rule results").option("-f, --format <format>", "Output format (json, sarif)", "json").option("-q, --quiet", "Only output failures (suppress passed results)").option("-c, --config <path>", "Path to config file (default: auto-detect)").option("--no-config", "Ignore config file").option("-r, --rules <path>", "Additional rules file to load (legacy)").option("-p, --rule-pack <path>", "Rule pack file to load").option(
14197
+ program.name("sentriflow").description("SentriFlow Network Configuration Validator").version("0.1.2").argument("[file]", "Path to the configuration file").option("--ast", "Output the AST instead of rule results").option("-f, --format <format>", "Output format (json, sarif)", "json").option("-q, --quiet", "Only output failures (suppress passed results)").option("-c, --config <path>", "Path to config file (default: auto-detect)").option("--no-config", "Ignore config file").option("-r, --rules <path>", "Additional rules file to load (legacy)").option("-p, --rule-pack <path>", "Rule pack file to load").option(
14198
14198
  "--encrypted-pack <path...>",
14199
14199
  "SEC-012: Path(s) to encrypted rule pack(s) (.grpx), can specify multiple"
14200
14200
  ).option(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentriflow/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "SentriFlow CLI - Network configuration linter and validator",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -8,7 +8,7 @@
8
8
  "type": "module",
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/sentriflow/sentriflow.git",
11
+ "url": "git+https://github.com/sentriflow/sentriflow.git",
12
12
  "directory": "packages/cli"
13
13
  },
14
14
  "homepage": "https://github.com/sentriflow/sentriflow#readme",
@@ -46,7 +46,7 @@
46
46
  "esbuild": "^0.27.0"
47
47
  },
48
48
  "bin": {
49
- "sentriflow": "./dist/index.js"
49
+ "sentriflow": "dist/index.js"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=18.0.0"