@meterian/cli 0.1.1 → 0.1.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.
Files changed (4) hide show
  1. package/README.md +32 -2
  2. package/dist/cli.js +2229 -1364
  3. package/package.json +2 -3
  4. package/CHANGELOG.md +0 -23
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@meterian/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Meterian security audit CLI — check open-source dependencies for vulnerabilities",
5
5
  "bin": {
6
6
  "meterian": "bin/meterian"
7
7
  },
8
8
  "files": [
9
9
  "dist/",
10
- "bin/",
11
- "CHANGELOG.md"
10
+ "bin/"
12
11
  ],
13
12
  "scripts": {
14
13
  "prepack": "esbuild src/cli.js --bundle --platform=node --external:vscode --outfile=dist/cli.js",
package/CHANGELOG.md DELETED
@@ -1,23 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to `@meterian/cli` are documented here.
4
-
5
- The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
-
7
- ## [0.1.1] — 2026-05-15
8
-
9
- ### Fixed
10
-
11
- - Set the correct `meterian/cli <version>` User-Agent header on all outbound HTTP calls to the Kiwi API (previously the header was unset or used the wrong client identifier).
12
-
13
- ## [0.1.0] — 2026-04-28
14
-
15
- Initial public release.
16
-
17
- ### Added
18
-
19
- - `check` command — batch dependency audit; reads `[{language, name, version}]` from stdin, returns a compact vulnerability summary with safe-version suggestions.
20
- - `advisories get` command — returns the full advisory list for a single package.
21
- - `nextsafe` command — returns the next safe version at each semver level (patch / minor / major).
22
- - Human-readable `--help` output for all commands.
23
- - Aliases for common language names (`npm` → `nodejs`, `cargo` → `rust`, `pypi` → `python`, etc.).