vuln-scan 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.
- package/Demo/Demo.png +0 -0
- package/README.md +4 -0
- package/package.json +3 -2
package/Demo/Demo.png
ADDED
|
Binary file
|
package/README.md
CHANGED
|
@@ -15,6 +15,10 @@ A Node.js CLI that scans a project’s **lockfile** (npm / pnpm / yarn) to find
|
|
|
15
15
|
- Optional `--json` output for automation
|
|
16
16
|
- Includes fix version when OSV provides one
|
|
17
17
|
|
|
18
|
+
## Demo
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
18
22
|
## Install / Run
|
|
19
23
|
|
|
20
24
|
### Run with npx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuln-scan",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Node.js CLI to scan dependency lockfiles for vulnerabilities using OSV.dev",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"cli.js",
|
|
12
|
-
"src"
|
|
12
|
+
"src",
|
|
13
|
+
"Demo"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
15
16
|
"start": "node ./cli.js",
|