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

elseware-ui

v3.4.0

Published

A modern and customizable React UI component library by elseware Technology.

Readme

elseware-ui

A TypeScript-first React component library for web and React Native applications. The package provides shared component contracts, platform-specific implementations, Tailwind/NativeWind styling, and conditional exports for browser and mobile bundlers.

Features

  • Web and React Native entry points with platform-specific declarations
  • React 18 and 19 support
  • React Native and NativeWind components
  • Tailwind CSS design tokens and a reusable preset
  • Tree-shakable ESM builds for modern web and Metro bundlers
  • Storybook 10 component development and production builds
  • TypeScript 7 web/native validation
  • Oxlint, Prettier, Knip, lint-staged, and Husky quality gates

Installation

Install the library and the peer dependencies required by your target.

Web

npm install elseware-ui react react-dom formik yup tailwindcss

Import the browser API and compiled styles:

import { Button } from "elseware-ui";
import "elseware-ui/styles.css";

React Native

npm install elseware-ui react react-native formik yup nativewind tailwindcss react-native-reanimated react-native-worklets

Metro-compatible bundlers select the react-native condition from the root export. The native entry can also be imported explicitly:

import { Button, Input } from "elseware-ui/native";

Configure NativeWind and Reanimated in the consuming application according to their platform setup requirements.

Package exports

The root export selects the native build when the bundler enables the react-native condition and otherwise selects the web build.

{
  ".": {
    "react-native": {
      "types": "./dist/index.native.d.ts",
      "import": "./dist/index.native.mjs",
      "default": "./dist/index.native.mjs"
    },
    "types": "./dist/index.d.ts",
    "import": "./dist/index.mjs",
    "default": "./dist/index.mjs"
  },
  "./native": {
    "types": "./dist/index.native.d.ts",
    "import": "./dist/index.native.mjs",
    "default": "./dist/index.native.mjs"
  },
  "./tailwind": "./tailwind.preset.js",
  "./styles.css": "./dist/index.css"
}

Tailwind preset

Add the package preset and include the distributed component sources or compiled application usage in your Tailwind content configuration as appropriate for your application:

const elsewarePreset = require("elseware-ui/tailwind");

module.exports = {
  presets: [elsewarePreset],
  content: ["./src/**/*.{js,jsx,ts,tsx}"],
};

Development

npm install
npm run dev

The main quality commands are:

npm run typecheck          # Type-check workspace, web, and native graphs
npm run lint               # Run Oxlint with warnings denied
npm run format:check       # Verify Prettier formatting
npm run deadcode           # Check files and dependency reachability
npm run build              # Build JS, CSS, and TS7 declarations
npm run build:storybook    # Build the production Storybook
npm run validate           # Run the complete quality pipeline

npm install initializes Husky for repository contributors. The pre-commit hook runs lint-staged; it can also be invoked directly with npm run precommit.

Component structure

Shared behavior and types live in base modules. Browser and native renderers live in web and native modules, with .native barrels forming the mobile public graph. Platform-neutral modules must not import DOM-only utilities.

Web component styles stay beside their owning component and are imported by that component's web implementation or local barrel. Do not register component styles in a root CSS manifest. The build follows the web module graph and extracts those imports into the public elseware-ui/styles.css bundle. Only design-system-wide foundations belong in src/styles.

Use type-only imports for TypeScript types and keep imports grouped as external, internal, data, and types where those groups are useful.

Publishing

Update the package version with npm version, then run:

npm run release

The release command runs the full validation pipeline before publishing publicly.