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

@stripe/ui-extension-tools

v0.1.0

Published

Developer tools for Stripe UI Extensions

Readme

Stripe UI Extension Tools

This package contains packages and configurations to support development with the Stripe UI Extension SDK. For details on creating a Stripe App, please refer to the Stripe Apps documentation.

Changelog

0.1.0

Migration guide: 0.0.1 to 0.1.0

  • ESLint 9, Jest 29, ts-jest 29, and TypeScript 5 are now peer dependencies.
  • Converted shared CommonJS configs to ES modules: eslint.config.ui-extension.mjs and jest.config.ui-extension.mjs.
  • Updated shared ESLint config for ESLint 9 flat config.

0.0.1

  • Initial release

Migration Guide

0.0.1 to 0.1.0

Version 0.1.0 moves the host project toolchain into peer dependencies and updates the shared ESLint and Jest configs for the current toolchain.

Declare peer dependencies

Projects using @stripe/ui-extension-tools must now declare the required toolchain packages in their own package.json. This keeps ESLint, Jest, ts-jest, and TypeScript versions explicit in each project instead of hiding them behind this package.

Add the peer dependencies that match the shared configs you use:

{
  "devDependencies": {
    "@types/jest": "^29.0.0",
    "eslint": "^9.0.0",
    "jest": "^29.0.0",
    "ts-jest": "^29.4.7",
    "typescript": ">=5.0.0 <6.1.0"
  }
}

At minimum, projects using the shared ESLint config need eslint and typescript. Projects using the shared Jest config also need jest, ts-jest, and @types/jest.

Update shared config filenames

The shared configs are now ES modules and use .mjs filenames.

If your project referenced the old CommonJS config files, update those references:

- @stripe/ui-extension-tools/eslintrc.ui-extension
+ @stripe/ui-extension-tools/eslint.config.ui-extension.mjs

- @stripe/ui-extension-tools/jest.config.ui-extension
+ @stripe/ui-extension-tools/jest.config.ui-extension.mjs

Update ESLint configuration

The shared ESLint config now targets ESLint 9 flat config. Use it from an eslint.config.mjs file:

import uiExtensionConfig from '@stripe/ui-extension-tools/eslint.config.ui-extension.mjs';

export default [...uiExtensionConfig];

Update Jest configuration

The shared Jest config is also an ES module:

import uiExtensionJestConfig from '@stripe/ui-extension-tools/jest.config.ui-extension.mjs';

export default {...uiExtensionJestConfig};