@scanrail/cli 0.1.4 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -7
package/README.md CHANGED
@@ -28,7 +28,7 @@ scanrail init --non-interactive --project-name demo --target https://example.com
28
28
  scanrail run --profile quick
29
29
  ```
30
30
 
31
- The current MVP includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting, a native security headers scanner, and a Docker-backed Gitleaks secrets adapter. Use `scanrail run --only headers` without Docker, or `scanrail run --only gitleaks` for the secrets scan only. Trivy and Semgrep adapters are planned.
31
+ The current MVP includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting, native security headers and TLS certificate baseline scanners, and a Docker-backed Gitleaks secrets adapter. Use `scanrail run --only headers` or `scanrail run --only tls` without Docker, or `scanrail run --only gitleaks` for the secrets scan only. Trivy and Semgrep adapters are planned.
32
32
 
33
33
  ## MCP
34
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scanrail/cli",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "description": "Developer-first security scan orchestrator",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -20,12 +20,12 @@
20
20
  "README.md"
21
21
  ],
22
22
  "optionalDependencies": {
23
- "@scanrail/cli-darwin-arm64": "0.1.4",
24
- "@scanrail/cli-darwin-x64": "0.1.4",
25
- "@scanrail/cli-linux-arm64": "0.1.4",
26
- "@scanrail/cli-linux-x64": "0.1.4",
27
- "@scanrail/cli-win32-arm64": "0.1.4",
28
- "@scanrail/cli-win32-x64": "0.1.4"
23
+ "@scanrail/cli-darwin-arm64": "0.2.0",
24
+ "@scanrail/cli-darwin-x64": "0.2.0",
25
+ "@scanrail/cli-linux-arm64": "0.2.0",
26
+ "@scanrail/cli-linux-x64": "0.2.0",
27
+ "@scanrail/cli-win32-arm64": "0.2.0",
28
+ "@scanrail/cli-win32-x64": "0.2.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
@@ -36,6 +36,8 @@
36
36
  "devsecops",
37
37
  "sast",
38
38
  "dast",
39
+ "tls",
40
+ "certificate",
39
41
  "semgrep",
40
42
  "trivy",
41
43
  "gitleaks",