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

@poluru-labs/enterprise-design-system-wc

v1.1.0

Published

Enterprise Design Systems — Lit web components, design tokens, Storybook, and Custom Elements Manifest.

Readme

@poluru-labs/enterprise-design-system-wc

Token-driven enterprise UI library built with Lit 3, TypeScript, and Storybook. Framework-agnostic custom elements (eds-*) with design tokens, dark theme, and TypeScript types.

npm version npm downloads License: MIT CI

Install

npm install @poluru-labs/enterprise-design-system-wc

Requires Node.js 20+. Depends on Lit ^3.2 (included as a dependency).

# optional: yarn / pnpm
yarn add @poluru-labs/enterprise-design-system-wc
pnpm add @poluru-labs/enterprise-design-system-wc

Usage

Bundler (recommended)

import '@poluru-labs/enterprise-design-system-wc/tokens.css';
import '@poluru-labs/enterprise-design-system-wc';
import { tokens, showToast } from '@poluru-labs/enterprise-design-system-wc';

showToast({ title: 'Saved', variant: 'success' });
<eds-button variant="primary">Continue</eds-button>

Package exports

| Import | What you get | | --- | --- | | @poluru-labs/enterprise-design-system-wc | Components, typed tokens helpers, utilities | | @poluru-labs/enterprise-design-system-wc/tokens.css | Design tokens CSS (light + dark) | | @poluru-labs/enterprise-design-system-wc/custom-elements.json | Custom Elements Manifest |

Dark theme

Add class eds-theme-dark on html or body:

<html class="eds-theme-dark">

Design tokens

@import '@poluru-labs/enterprise-design-system-wc/tokens.css';
import { tokens, color, spacing } from '@poluru-labs/enterprise-design-system-wc';

Features

  • Lit 3 custom elements with TypeScript types
  • Design tokens: color, typography, spacing, radius, elevation, motion
  • Light + dark themes
  • Custom Elements Manifest for IDE / docs tooling
  • Accessible defaults (focus, keyboard, ARIA)
  • Works in plain HTML, Angular, React, and Vue

Framework notes

| Stack | Tip | | --- | --- | | HTML | Load tokens.css, then import the package as a module | | Angular | Add CUSTOM_ELEMENTS_SCHEMA; import the package once at bootstrap | | React | Import once at the app root; listen to custom events with refs / addEventListener | | Vue | Mark eds-* as custom elements via compilerOptions.isCustomElement |

Full guides live in the GitHub repo Storybook Integration docs.

Components

50+ eds-* elements, including:

eds-button, eds-input, eds-select, eds-checkbox, eds-switch, eds-tabs, eds-modal, eds-drawer, eds-toast, eds-data-table, eds-date-picker, eds-accordion, eds-alert, eds-avatar, eds-badge, eds-card, eds-combobox, eds-dropdown-menu, eds-pagination, eds-progress-bar, eds-slider, eds-tooltip, eds-tree-view, and more.

See the component list on GitHub or run Storybook locally.

Browser support

Modern evergreen browsers with native Custom Elements / ES modules (Chrome, Firefox, Safari, Edge).

Documentation

| Resource | Link | | --- | --- | | GitHub | https://github.com/poluru-labs/enterprise-design-system-wc | | Changelog | https://github.com/poluru-labs/enterprise-design-system-wc/blob/main/CHANGELOG.md | | Contributing | https://github.com/poluru-labs/enterprise-design-system-wc/blob/main/CONTRIBUTING.md | | Support | https://github.com/poluru-labs/enterprise-design-system-wc/blob/main/SUPPORT.md | | Security | https://github.com/poluru-labs/enterprise-design-system-wc/blob/main/SECURITY.md |

Local Storybook

git clone https://github.com/poluru-labs/enterprise-design-system-wc.git
cd enterprise-design-system-wc
npm install
npm run storybook

Open http://localhost:6006

Author

Subrahmanyam Poluru — Poluru Labs

Design systems architect and product engineer. Builds token-driven component libraries and documentation platforms for enterprise teams.

License

MIT © Subrahmanyam Poluru

See NOTICE and AUTHORS.

Issues

Bugs and feature requests: GitHub Issues
Security reports: SECURITY.md (private disclosure)