updates 16.5.1 → 16.5.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 (3) hide show
  1. package/README.md +6 -5
  2. package/dist/index.js +232 -229
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -3,12 +3,13 @@
3
3
 
4
4
  ![](./screenshot.png)
5
5
 
6
- `updates` is a CLI tool which checks for dependency updates. It is typically able to complete in less than a second. Supported dependencies are:
6
+ `updates` is a CLI tool which checks for dependency updates. It is typically able to complete in less than a second.
7
7
 
8
- - npm via `package.json`
9
- - uv via `pyproject.toml`
10
- - poetry via `pyproject.toml`
11
- - go via `go.mod` (checking only currently, disabled by default when directory is used)
8
+ # Supported files
9
+
10
+ - `package.json`: supports all npm package managers
11
+ - `pyproject.toml`: supports formats of `uv` and `poetry`
12
+ - `go.mod`: experimental go support. updating is not implemented and file will not be discovered in directory mode.
12
13
 
13
14
  # Usage
14
15