{"id":15101726,"url":"https://github.com/austin-raey/bskt","last_synced_at":"2026-02-12T14:32:12.246Z","repository":{"id":255447157,"uuid":"852537932","full_name":"austin-raey/bskt","owner":"austin-raey","description":"A CLI tool to check and update your package.json dependencies to their latest versions.","archived":false,"fork":false,"pushed_at":"2024-12-10T16:06:04.000Z","size":54,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"latest","last_synced_at":"2025-08-30T20:19:04.378Z","etag":null,"topics":["bun","dependency-updater","npm","typescript","version-control"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/austin-raey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-05T01:27:09.000Z","updated_at":"2024-12-10T16:06:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4e245de-8397-4e43-b052-4ec809bfff9f","html_url":"https://github.com/austin-raey/bskt","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"ab654ab87b5ff88421506195bb7003df248abd06"},"previous_names":["austin-raey/bskt"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/austin-raey/bskt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/austin-raey%2Fbskt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/austin-raey%2Fbskt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/austin-raey%2Fbskt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/austin-raey%2Fbskt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/austin-raey","download_url":"https://codeload.github.com/austin-raey/bskt/tar.gz/refs/heads/latest","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/austin-raey%2Fbskt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29368689,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bun","dependency-updater","npm","typescript","version-control"],"created_at":"2024-09-25T18:29:06.329Z","updated_at":"2026-02-12T14:32:12.229Z","avatar_url":"https://github.com/austin-raey.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `bskt`\n\n\u003csmall\u003eSimple, zero-dependency bite sized (~3kB) `package.json` dependency updater with the power of [`bun`](https://bun.sh)\u003c/small\u003e\n\nKeep your buns steamy with the 🧺 `bskt` CLI.\n\n```sh\n### In your shell\n### Print the latest dependencies 👀\nbunx bskt\nnpx bskt\npnpm dlx bskt\nyarn dlx bskt\n\n### or write them to package.json 📝\nnpx bskt -w\npnpm dlx bskt -w\nyarn dlx bskt -w\nbunx bskt -w\n\n### or if you install globally 🌐\nnpm i -g bskt\nbskt\n\n### or save a few keystrokes ⌨️\nbun i -g bskt\n\n### or if it is a package.json dependency and `./node_modules/.bin` is in your $PATH 😵‍💫\nnpm i -D bskt # or without -D\nbskt\n```\n\n```jsonc\n// or as a script in your package json 📦\n{\n  \"scripts\": {\n    \"some-name-check-deps\": \"bunx bskt\",\n    \"some-name-update-deps\": \"bunx bskt -w\",\n  },\n}\n```\n\n## 📄 About\n\n### Usage\n\n`bskt` is a CLI tool made to quickly update your `package.json` dependencies to their latest versions.\n\n- Updates package versions to the `latest` tag\n\n  \u003csmall\u003eThe `latest` tag refers to the version specifier given by the npm registry, and you can see what other tags are available on a [given package's \"Versions\" tab](https://www.npmjs.com/package/npm?activeTab=versions)! These can be custom, but it seems `latest` always refers to whatever the package maintainer will specify as latest non-pre-release version.\u003c/small\u003e\n\n- Retains version specifiers such as `~` `^`\n- _(Planned)_ specify the `dist-tag` targets you wish to update to with `--tag` i.e. `bskt -w --tag=\"canary,next\"`\n\nPersonally, I find this pairs well if you use _exact_ versions (no `^` `~`) in your `package.json`.\n\n### Limitations\n\n`bskt` _only_ updates `package.json` dependencies to their latest version, as specified by their `latest` tag on the [NPM registry](https://www.npmjs.com) _(or the tags and fallbacks you specify)_.\n\n_For now_, the tool was designed explicitly for this purpose. If this does not suit your use case, I'd highly recommend some [other tools](#Alternatives) which can handle updating to scopes you desire, such as `major` / `minor` / `patch` etc.\n\n## 🔧 Options\n\nOptions (denoted by `{opt}`) can be specified by passing:\n\n- Most options:\n  - `-{opt}` or `--{opt}`\n  - `-{opt} -{opt}` or `--{opt} --{opt} -{opt}`\n- `-i` and `-x`:\n\n  - Options with values can supply `=` or a space:\n\n    `-i=package1 -{otheropts}`\n\n    `-x=package1 -{otheropts}`\n\n    `-i package1 -{otheropts}`\n\n    `-x package1 -{otheropts}`\n\n  - Also, they can have quotes `'` `\"` or none at all:\n\n    `-i=package1` or `-i='package1'` or `-i=\"package1\"`\n\n    `-x=package1` or `-x='package1'` or `-x=\"package1\"`\n\n  - Finally, they use `,` (no space!) to delimit which package names to pass:\n\n    `-i=package1,package2,package3`\n\n    `-x=package1,package2,package3`\n\n### Usage\n\n```sh\n### -d, -v: Show more detailed messaging\nbskt -d\nbskt -v\n\n### -F: Disable color formatting\nbskt -F\n\n### -h: Show help message.\nbskt -h\n\n### -i: Specify comma `,` delimited list of dependencies to include. Each string is matched against the entire dependency's name. Can include `'` or `\"` around the list if you want.\nbskt -i=solid # Would include 'solid-js', '@solidjs/meta', 'eslint-plugin-solid' etc.\nbskt -i=solid,unocss # Would include 'solid-js', '@solid...', 'unocss', '@unocss/reset', etc.\n# Different command formatting, if desired:\nbskt -i=\"solid,unocss\"\nbskt -i='solid,unocss'\n\n\n### -w: Write found updates to `package.json`. By default, `bskt` does not do anything to it.\nbskt -w\n\n### -x: Specify comma `,` delimited list of dependencies to exclude. Each string is matched against the entire depenency's name. Can include `'` or `\"` around the list if you want.\nbskt -x=eslint # Would exclude 'eslint', '@typescript-eslint/...', 'prettier-eslint` etc.\nbskt -x=eslint,@fortawesome # Would exclude 'eslint', '@typescript-eslint/...', '@fortawesome/fontawesome-...' etc.\n# Different command formatting, if desired:\nbskt -x=\"eslint\"\nbskt -x='eslint,@fortawesome'\n```\n\n## ✨ Alternatives\n\n`bskt` was inspired by these other excellent package update managers:\n\n- [`taze`](https://github.com/antfu/taze)\n- [`npm-check-updates`](https://github.com/raineorshine/npm-check-updates)\n\nFurthermore, you may be able to get by with simply running bun's built-in package update command:\n\n```shell\nbun update --latest\n```\n\nPlease check them out! Especially if `bskt` doesn't fit your use case! 😁\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faustin-raey%2Fbskt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faustin-raey%2Fbskt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faustin-raey%2Fbskt/lists"}