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

@hashrytech/quick-components-kit

v0.32.1

Published

A Svelte component library and toolset

Downloads

4,219

Readme

quick-components-kit

A Svelte component library and toolkit

Install

You can install the library via npm.

npm install @hashrytech/quick-components-kit

or via yarn:

yarn add @hashrytech/quick-components-kit

Iconify setup

If you use the Icon component or pass string-based icon classes to components such as Button, the consuming app must provide the Iconify Tailwind plugin and the icon collections it uses.

Example:

npm install -D @iconify/tailwind4 @iconify-json/ri

Then enable the plugin in your app CSS:

@plugin "@iconify/tailwind4";

Why this is required:

  • Iconify resolves icons at the consuming app's Tailwind build time.
  • This package's own devDependencies are not available to another app's build pipeline.

Releases

Push to main with Conventional Commits. CI runs semantic-release to:

  • calculate semantic version bump (fix/patch/perf/revert = patch, feat = minor, BREAKING CHANGE/! = minor)
  • generate release notes from commit messages
  • update CHANGELOG.md
  • Tag and create GitHub release
  • publish to npm
  • example commit message: patch: fix div width

Commit message format

Use Conventional Commit format:

type(scope): short summary

Examples:

fix(button): correct disabled styles
patch(button): adjust icon spacing
feat(button): add loading slot
feat!: remove deprecated button prop

Notes:

  • patch: is supported and creates a patch release.
  • ! or BREAKING CHANGE: creates a minor release.
  • docs:, chore:, style:, test: and other non-release types do not trigger a version bump.
  • If a commit is not a valid Conventional Commit, CI commitlint fails and the release job stops before publishing.
  • Use a lowercase imperative summary. Good: fix(drawer): add local scroll lock action. Bad: patch: Adding disable local scroll action.
  • If commitlint rejects your last commit message, amend it with:
git commit --amend -m "fix(drawer): add local scroll lock action"

Configurations

Set default theme values for primary and secondary variables:

  • Color gradient
  • Shadow
  • Border radius

Default Theme

@theme {

    --breakpoint-xs: 480px;
    --breakpoint-xxs: 400px;
    --breakpoint-xxxs: 360px;
    --breakpoint-xxxxs: 320px;

    --color-primary-50: oklch(0.967 0.07 95.38);
    --color-primary-100: oklch(0.933 0.094 95.47);
    --color-primary-200: oklch(0.864 0.128 95.3);
    --color-primary-300: oklch(0.767 0.165 95.31);
    --color-primary-400: oklch(0.678 0.19 95.1);
    --color-primary-500: oklch(0.608 0.2 94.82);
    --color-primary-600: oklch(0.496 0.17 94.91);
    --color-primary-700: oklch(0.397 0.145 94.53);
    --color-primary-800: oklch(0.326 0.123 94.55);
    --color-primary-900: oklch(0.282 0.106 94.7);
    --color-primary-950: oklch(0.161 0.081 94.91);

    --color-secondary-50: oklch(0.972 0.037 19.87);
    --color-secondary-100: oklch(0.945 0.046 19.95);
    --color-secondary-200: oklch(0.868 0.092 19.81);
    --color-secondary-300: oklch(0.749 0.158 20.04);
    --color-secondary-400: oklch(0.618 0.226 20.19);
    --color-secondary-500: oklch(0.519 0.26 20.31);
    --color-secondary-600: oklch(0.437 0.229 20.44);
    --color-secondary-700: oklch(0.352 0.197 20.45);
    --color-secondary-800: oklch(0.293 0.172 20.38);
    --color-secondary-900: oklch(0.252 0.15 20.25);
    --color-secondary-950: oklch(0.131 0.098 19.98);

    --shadow-primary: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-secondary: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    --radius-primary: 0.5rem;
    --radius-secondary: 0.375rem;
}

FIX