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

ingred-ui

v33.11.1

Published

![logo.png](https://github.com/voyagegroup/ingred-ui/assets/50351271/6d5bfbbe-96ba-435a-96a3-9b3f022626db) INGRED UI is a design system developed to make it easy and quick for anyone to build a user interface. It is based on React and has a well thought o

Readme

logo.png INGRED UI is a design system developed to make it easy and quick for anyone to build a user interface. It is based on React and has a well thought out structure that works well with TypeScript.

NPM JavaScript Style Guide

Netlify Status

Install

For npm users:

npm install --save ingred-ui styled-components

For yarn users:

yarn add ingred-ui styled-components

For pnpm users:

pnpm add ingred-ui styled-components

Usage

import * as React from "react";

import { ThemeProvider, createTheme, Button } from "ingred-ui";

const App = () => {
  const theme = createTheme();
  return (
    <ThemeProvider theme={theme}>
      <Button>Sample</Button>
    </ThemeProvider>
  );
};

If you use <DatePicker /> or <DateRangePicker /> , add

import "react-dates/lib/css/_datepicker.css";

Storybook: https://ingred-ui.netlify.app/

Development

Node.js 20 以上を推奨します。パッケージ管理は pnpmpackage.jsonpackageManager)。ローカル開発では makepnpm run のラッパー(fluct_ms の client と同様)。CI は従来どおり ci.mk を使用します。

# 初回・依存更新後
make install   # または make setup

# よく使うコマンド(一覧は make / make help)
make lint
make test
make storybook
make build-storybook
make build
make format

特定テストだけ実行する例: make test ARGS='--testPathPattern=Banner'

祝日データの更新

カレンダーコンポーネントで使用される日本の祝日データは、内閣府が公開しているCSVファイルから自動的に更新されます。

make update-holidays

詳細な情報については、scripts/holiday/README.md を参照してください。

カナリア版の publish

試験版を npm の @canary タグで配布する。正式版リリース(changesets → @latest)とは独立した運用。

publish する(maintainer)

  1. publish 対象ブランチの package.jsonversionX.Y.Z-canary.N に設定する(例: 33.0.0-canary.0
  2. ブランチを push する
  3. GitHub Actions → release → Run workflow
    • canary_ref: publish 対象のブランチ名(例: feat/my-feature
  4. npm に @canary タグで publish される(OIDC 認証。npm Trusted Publisher は release.yaml のみ登録済み)

同じ内容を再 publish する場合は -canary.N の連番を上げる(npm は同一 version の再 publish 不可)。

利用する(利用側プロジェクト)

publish された version を固定してインストールする。

"ingred-ui": "33.0.0-canary.0"

peerDependencies 化を含む変更の場合は、README や PR に記載の追加パッケージも dependencies に入れる。

正式版リリース

カナリアで問題なければ PR を master に merge し、いつも通り changesets の Version Packages PR 経由で @latest に publish する。

License

MIT © CARTA HOLDINGS, Inc.