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

@language-lit/material3-expressive

v1.2.2

Published

Material 3 Expressive components for React 18 and 19 — 41 conformant components, precompiled CSS, typed theme and design-token APIs, SSR-safe, zero runtime dependencies.

Downloads

738

Readme

@language-lit/material3-expressive

A framework-neutral React implementation of Material 3 Expressive. It ships precompiled CSS, typed theme and token APIs, native web semantics, and 34 conformant public components with no runtime dependencies.

Install

npm install @language-lit/material3-expressive

React 18 or React 19 is the only peer requirement.

Use

Import components from the package root and the complete stylesheet once:

import {
  Button,
  Material3Provider,
} from '@language-lit/material3-expressive'
import '@language-lit/material3-expressive/styles.css'

export function App() {
  return (
    <Material3Provider colorMode="system">
      <Button>Continue</Button>
    </Material3Provider>
  )
}

The library does not require Tailwind, a content glob, a preset, runtime style injection, or framework-specific adapters. Material3Provider defaults to the complete theme and system color mode.

Entry points

| Entry | Purpose | | --- | --- | | @language-lit/material3-expressive | React components, provider, and hooks | | @language-lit/material3-expressive/theme | Theme creation and types; React-free | | @language-lit/material3-expressive/tokens | Token schemas, defaults, and CSS generation; React-free | | @language-lit/material3-expressive/styles.css | Complete tokens and component styles |

Documentation

The full documentation, with live component demos and an interactive theme playground, is at m3e.language-lit.com. It is built from this repository — see site/.

The supported-component matrix is generated from the machine-readable inventory. Only entries marked conformant are part of the advertised support surface.

Upgrading from 0.3

1.0.0 replaces the 0.3 API entirely. The Tailwind preset, the components/* subpaths, the ./styles export, and the legacy hooks and utilities are gone; imports move to the root entry and CSS moves to /styles.css. Read the migration guide before upgrading. Applications that are not ready can stay on 0.3.x, which remains published.

Development

npm install
npm run playground
npm run check:docs
npm run verify

The playground runs at http://localhost:5173. The aggregate verification checks types, tests, package output, architecture, documentation, CSS, tokens, the release contract, bundle budgets, and packed Vite/Next consumer fixtures.

License

MIT