vibecoded lightweight local alternative to renovate dependency updater
- Go 99.7%
- Makefile 0.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
After bumping versions with 'go get', run 'go mod tidy' to keep go.sum in sync and clean up any stale require blocks or indirect dependencies that shifted during the update. |
||
| cmd/depup | ||
| docs | ||
| e2e | ||
| internal | ||
| .editorconfig | ||
| .gitignore | ||
| .semrel.yaml | ||
| AGENTS.md | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| Makefile | ||
| prek.toml | ||
| README.md | ||
depup
Note
This project was AI-generated with Kimi-K2.6 hosted by Infomaniak. This is a personal project built to solve my own workflow needs. It is provided as-is; contributions are welcome but support is not guaranteed.
A lightweight, local dependency updater following the UNIX philosophy.
No branches, no pull requests — just scan, compare, and update in place.
Installation
With Go 1.20+:
go install git.sr.ht/~nka/depup/cmd/depup@latest
Or clone and build:
git clone https://git.sr.ht/~nka/depup depup
cd depup
make install
Usage
# scan and update all detected ecosystems
depup
# dry-run to preview changes
depup --dry-run
# target specific ecosystems
depup --only go,npm
# show help
depup --help
Review changes with git diff, then commit.