verimu 0.0.17 → 0.0.19
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 +15 -13
- package/dist/cli.mjs +1120 -95
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs +1081 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1075 -77
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,19 +46,21 @@ You can configure snippet context size with:
|
|
|
46
46
|
- `--context-lines <n>` (default `4`, clamped to `0..20`)
|
|
47
47
|
- Programmatic API: `numContextLines?: number` in `scan()` config
|
|
48
48
|
|
|
49
|
-
### Analyzer Matrix
|
|
50
|
-
|
|
51
|
-
| Ecosystem in Verimu |
|
|
52
|
-
|
|
53
|
-
| npm / yarn / pnpm |
|
|
54
|
-
| deno |
|
|
55
|
-
| pip / poetry / uv | Python
|
|
56
|
-
| maven |
|
|
57
|
-
| nuget |
|
|
58
|
-
| cargo | Rust
|
|
59
|
-
| go |
|
|
60
|
-
| ruby |
|
|
61
|
-
| composer (PHP) |
|
|
49
|
+
### Analyzer Matrix (v0.0.19)
|
|
50
|
+
|
|
51
|
+
| Ecosystem in Verimu | Analyzer strategy | Evidence targets |
|
|
52
|
+
|---|---|---|
|
|
53
|
+
| npm / yarn / pnpm | Babel parse + traverse | imports/requires/exports + nearby calls |
|
|
54
|
+
| deno | Babel parse + traverse | imports + nearby calls |
|
|
55
|
+
| pip / poetry / uv | Python source pattern analyzer | `import` / `from ... import ...` + calls |
|
|
56
|
+
| maven | Java source pattern analyzer | `import` + method/static calls |
|
|
57
|
+
| nuget | C# source pattern analyzer | `using` + namespace/type calls |
|
|
58
|
+
| cargo | Rust source pattern analyzer | `use` / `extern crate` + `::`/method calls |
|
|
59
|
+
| go | Go source pattern analyzer | `import` + selector/function calls |
|
|
60
|
+
| ruby | Ruby source pattern analyzer | `require` / `include` + constant/module calls |
|
|
61
|
+
| composer (PHP) | PHP source pattern analyzer | `use` / `require` + static/constructor calls |
|
|
62
|
+
|
|
63
|
+
All analyzers are fail-open (non-fatal): a parser/runtime issue only downgrades usage-context status for that ecosystem/package and never aborts SBOM/CVE scanning.
|
|
62
64
|
|
|
63
65
|
## Development
|
|
64
66
|
|