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

@solice/ui-kit

v1.0.3

Published

A Multi-UI Component Library for Solice Developers

Readme

Solice UI Component Library

License: MIT

These components will eventually grow to be Solice's one stop shop for anything frontend:

For Official Solice Branding specifics please see the following

UI Dev Stack

Development

Installing

npm install

Building For Test

npm run build

(this will build into the dist folder and copy the package.json)

cd dist
npm link
cd ..
npm run watch

(if you want to link directly to dist remove all instances of ./dist from the package.json that just got copied over)

open any other project in your user workspace and run

npm ls -g --depth=0 --link=true

(this shows what modules this newly opened project is linked to)

npm link @soliceio/ui-kit/dist

You can now import this package to test before publish and since watch is running, any changes made to the library code will auto build and hot refresh in your other project reference via npm link

Building For Publish

npm run build
npm login
npm publish (dont forget to change the version in package.json)

Component Usage

Most components extend base component with all of your basic html directives, but in order to speed things up, we have the prop values 'primary' and 'secondary' and other starter values to give color and size.

 <Button text='React Medium Secondary Button' primary={false} size='medium' />

Wrap anything you need styled in the Flex component, this uses flexbox.

 <Flex container={false} alignItems='center' flexDirection='column' justifyContent="space-between">
    <button className="active">Non Solice Button W/ Solice Global Styles</button>
    <Button text='React Small Primary Button' primary={true} size='small'  />
    <Button text='React Medium Primary Button' primary={true} size='medium' />
    <Button text='React Large Primary Button' primary={true} size='large'  />
 </Flex>

We also have mobile sizes where media query can split

const sizes = {
  mobileS: '320px',
  mobileM: '375px',
  mobileL: '425px',
  tablet: '768px',
  laptop: '1024px',
  laptopL: '1440px',
  desktop: '1441px',
};

Theme Usage

You can wrap the entire app in styled-components "ThemeProvider" and provide a theme(we have 2 basic ones). Within this you can use the GlobalStyles component to overwrite or store any global styles you need. The theme will be saved in local storage for the user when they come back