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

@bitrise/bitkit-v2

v0.3.192

Published

Bitrise Design System Components built with Chakra UI V3

Downloads

6,950

Readme

@bitrise/bitkit-v2

npm version

Bitrise Design System Components built with Chakra UI v3.

Browse the component library in Storybook

Features

  • Custom Design System: Complete Bitrise brand implementation
  • Built with Chakra UI v3: Latest Chakra UI features and performance
  • TypeScript: Full TypeScript support with auto-generated types
  • Self-hosted Fonts: Figtree and Source Code Pro bundled via BitkitProvider
  • Simple Installation: Just npm install @bitrise/bitkit-v2

Installation

npm install @bitrise/bitkit-v2

Chakra UI and Emotion are included as regular runtime dependencies of this package, so you do not need to install them separately.

Requirements

  • React 18+ (peer dependency)
  • React DOM 18+ (peer dependency)

Quick Start

import { BitkitProvider, BitkitButton } from '@bitrise/bitkit-v2';

function App() {
  return (
    <BitkitProvider>
      <BitkitButton variant="primary">Hello Bitrise!</BitkitButton>
    </BitkitProvider>
  );
}

Development

Requirements

  • Node.js 24.x+ (see .tool-versions for the exact version used in development)

Commands

# Install dependencies
npm install

# Start Storybook
npm run storybook

# Build the library
npm run build

# Generate theme types
npm run theme:generate-types

Export SVG icons from Figma

First you should create a Figma Personal Access Token to acces to the Bitkit Foundations file: https://help.figma.com/hc/en-us/articles/8085703771159-Manage-personal-access-tokens

FIGMA_TOKEN=<your-personal-access-token> npm run generate:icons

Manual Icon Overrides

If you need to customize an icon (e.g., add animations), you can prevent it from being overwritten during generation by adding a skip marker:

// @generate:skip
// This file is manually maintained with custom animation.

import { Icon, IconProps } from '@chakra-ui/react/icon';
// ... your custom implementation

Icons marked with // @generate:skip will:

  • Be preserved during regeneration
  • Still be exported in the barrel files
  • Appear in the generation summary as "skipped (manual)"

You can also create custom icons that don't exist in Figma. Just add the skip marker and place them in the appropriate size folder (lib/icons/16x16/ or lib/icons/24x24/). They'll be automatically included in exports.

License

MIT

Contributing

Please see our contributing guidelines.