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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@open_resources/semantic-release-uv

v1.5.1

Published

A [semantic-release](https://semantic-release.gitbook.io/semantic-release/) plugin to publish Python packages built with [`uv`](https://github.com/astral-sh/uv).\ ![NPM Version](https://img.shields.io/npm/v/%40open_resources%2Fsemantic-release-uv?logo=npm

Downloads

1,849

Readme

⚙️🐍 semantic-release-uv

A semantic-release plugin to publish Python packages built with uv.
NPM Version Gitlab Pipeline Status
Semantic Release Gitlab Code Coverage

CI Environment

  • Node.js ≥ 18.0.0
  • Python ≥ 3.9
  • uv installed and available in PATH

Build System Interface

semantic-release-uv uses uv to build and publish Python packages defined with pyproject.toml.

  • Supports only PEP 621-compliant pyproject.toml configuration
  • Does not support legacy setup.py/setup.cfg-based builds
  • Requires uv to be installed and discoverable

Steps

| Step | Description | |-------------------|-------------| | verifyConditions | - Verify the presence and validity of PYPI_TOKEN- Validate the pyproject.toml structure | | prepare | Update the version in pyproject.toml, locking and build the distribution with uv | | publish | Upload the package to PyPI or a custom index using uv publish |

Environment Variables

| Variable | Description | Required | Default | |------------------|-------------------------------------|----------|---------| | PYPI_TOKEN | API token for PyPI | ✅ | — | | PYPI_REPO_URL | Custom repository URL | ❌ | https://upload.pypi.org/legacy/ | | PYPI_USERNAME | Username for repository | ❌ | token |

Usage

Add the plugin to your semantic-release configuration:

{
  "plugins": [
    "@semantic-release/commit-analyzer",
    "@semantic-release/release-notes-generator",
    "@open_resources/semantic-release-uv"
  ]
}

Note that this plugin modifies the version inside of pyproject.toml and potentially change uv.lock. Make sure to commit pyproject.toml using the @semantic-release/git plugin, if you want to save the changes:

{
  "plugins": [
    "@semantic-release/commit-analyzer",
    "@semantic-release/release-notes-generator",
    "semantic-release-uv",
    [
      "@semantic-release/git",
      {
        "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
        "assets": ["pyproject.toml", "uv.lock"],
      }
    ]
  ]
}

Options

| Option | Type | Default | Description | |----------------|-----------|-------------------------------------|-------------| | srcDir | string | . | Path to the project root | | distDir | string | dist | Output directory for built distributions | | repoUrl | string | https://upload.pypi.org/legacy/ | URL of the package index |

Development

See CONTRIBUTING.md for detailed development setup and guidelines.

Quick start:

  1. Open in VS Code's devcontainer (recommended)
  2. Install dependencies: yarn install
  3. Run tests: yarn test
  4. Check coverage (required 100%): yarn coverage

Key requirements:

  • Node.js ≥ 18
  • All changes must target the beta branch
  • 100% test coverage is mandatory
  • Commits follow Conventional Commits
  • Pre-commit hooks must pass (auto-configured in devcontainer)

License

MIT License

Author Information

Deltamir - ITN Security Expert, DevSecOps Engineer and Certified Pentester in a Telecom company Contact via Github/Gitlab inbox