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

@sc-360-v2/sccoreui

v0.0.44

Published

`@sc-360-v2/sccoreui` is a powerful library designed for creating and managing your own CSS library. It enables you to build reusable, customizable, and consistent styles that can be integrated into multiple projects. This package simplifies the process o

Readme

@sc-360-v2/sccoreui

✨ Overview

@sc-360-v2/sccoreui is a powerful library designed for creating and managing your own CSS library. It enables you to build reusable, customizable, and consistent styles that can be integrated into multiple projects. This package simplifies the process of creating and maintaining a centralized CSS library, ensuring a cohesive design system across your applications.

🔧 Installation

Follow these steps to install and configure the library in your project:

Install the library

Run the following command to add the library to your project:

npm install @sc-360-v2/sccoreui

Install Required Dependencies

To use this library effectively, ensure you have the necessary dependencies installed. For example, if your CSS library relies on specific tools or preprocessors like Sass, install them as needed:

npm install sass

🚀 Usage

Here’s a basic example of how to use the @sc-360-v2/sccoreui library in your project.

1. Importing the CSS Library

You can import the CSS library into your project to apply consistent styles:

// Import the main CSS file
@import "@sc-360-v2/sccoreui/styles/main.scss";

2. Using Predefined Classes

The library provides a set of predefined utility classes and components. For example:

<div class="btn btn-primary">Primary Button</div>
<div class="card">
  <h2 class="card-title">Card Title</h2>
  <p class="card-content">This is a reusable card component.</p>
</div>

3. Customizing Styles

You can extend or override the default styles by creating your own SCSS files and importing them after the library:

@import "@sc-360-v2/sccoreui/styles/main.scss";

// Custom styles
.btn-custom {
  background-color: #ff5733;
  color: #fff;
}

📂 File Structure

Your project will look like this after installation:

my-project/
├── src/
│   ├── styles/
│   │   └── custom.scss
│   └── App.tsx
├── node_modules/
├── package.json
├── tsconfig.json
└── README.md

📦 Library Build Process

The build process is optimized to generate a clean and efficient CSS library. Gzipped assets are created, and unnecessary files are excluded.

  1. Run the build command:

    npm run build
  2. The output will be available in the dist/ folder. You can publish this to npm or use it directly in your projects.

🌟 Features

  • 🎨 Reusable CSS components for consistent design
  • ✂️ Utility-first classes for rapid development
  • ⚙️ Customizable styles to match your brand
  • 🚀 Built with modern CSS and SCSS for flexibility
  • 📚 Easy integration into any project

🛡️ License

This library is licensed under the MIT License.