npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@block65/oxlint

v1.83.0

Published

Block65 build of oxlint 1.83.0 with additional type-aware rules routed to @block65/oxlint-tsgolint.

Readme

@block65/oxlint

oxlint 1.83.0 with four added type-aware rules and one changed upstream rule. Those four are implemented in @block65/oxlint-tsgolint. Linux x64 and arm64 only.

# pnpm-workspace.yaml
overrides:
  oxlint: npm:@block65/[email protected]
  oxlint-tsgolint: npm:@block65/[email protected]

Added rules

  • typescript/define-messages-keys
  • typescript/no-widening-alias
  • typescript/no-widening-object-keys
  • typescript/no-widening-return-type

Versioning

The patch is upstream's patch times 100 plus a build number. Upstream 1.83.0 gives 1.83.0, then 1.83.1; an upstream 1.83.1 would give 1.83.100. The major and minor are upstream's, so oxlint ranges keep resolving.

Changed rule

typescript/no-inferrable-types reports a primitive annotation it considers redundant and suggests deleting it. On a const holding a literal the annotation is not redundant: const a: number = 5 is typed number, while const a = 5 is typed 5. Deleting it narrows the type, and on an exported declaration that narrows what every other file sees.

This build stops reporting that case for number, string, boolean and bigint. Still reported: const a: 5 = 5, where the annotation matches what inference already gives, and let, var, parameters and properties, which widen on their own.