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

free-v-design-system

v100.1.2

Published

Community fork of @freee_jp/vibes (freee K.K.'s design system) with React 19 peer dependency support. Not affiliated with or endorsed by freee K.K.

Readme

free-v-design-system

This is a community fork of freee/vibes (@freee_jp/vibes), the design system by freee K.K., republished to npm as free-v-design-system. This fork is not affiliated with, maintained by, or endorsed by freee K.K. "vibes" and "freee" are brands of freee K.K.; this package uses a different name for that reason and refers to them only to describe its origin.

Why this fork exists

Upstream @freee_jp/vibes declares react: ^16.8.x || ^17 || ^18 as a peer dependency, which blocks installation in React 19 apps. Inspection of the published code showed no actual dependency on APIs removed in React 19 (no findDOMNode calls, no function-component defaultProps, no legacy context, no UNSAFE_ lifecycles), so this fork simply widens the peer range.

The goal is to be a temporary bridge: if upstream adds React 19 support, use upstream and consider this fork deprecated.

Changes from upstream (per Apache License 2.0 §4)

Based on @freee_jp/vibes 100.1.0. Modifications:

  • package.json: renamed package to free-v-design-system; added || ^19 to the react / react-dom peer dependency ranges; updated repository/homepage/bugs metadata; added description and fork-maintainer contributor entry
  • README.md: replaced with this fork notice (original content below)
  • .github/workflows/publish_package_to_npmjs.yml: switched to npm Trusted Publishing (OIDC) with manual dispatch

No component source code has been modified. Versioning mirrors upstream (100.1.0 = upstream 100.1.0); fork-only fixes, if ever needed, will be released as 100.1.0-fork.N style prereleases or patch bumps documented here.

Install

npm install free-v-design-system

Peer dependencies (same as upstream, plus React 19 allowed): react, react-dom, styled-components@^5, react-modal@^3.7.1, lottie-web@^5.5.7.

Usage

Import paths change from @freee_jp/vibes to free-v-design-system:

import 'free-v-design-system/css';
import { MessageBlock } from 'free-v-design-system';

Everything else is identical to upstream — see the upstream documentation and the original README below.

Fork changelog

  • 100.1.2: React 19 fix — WithPopup (used by all dropdowns) rendered CSSTransition without nodeRef, hitting ReactDOM.findDOMNode (removed in React 19) whenever a popup opened. Now passes a wrapper nodeRef.
  • 100.1.1: SSR fix — VibesContext evaluated document.body at module scope, crashing any server-side render (e.g. Next.js) that imports the package. Now guarded with typeof document === 'undefined'. Client behavior unchanged.
  • 100.1.0: initial fork release (peer range widened only, dist byte-identical to upstream)

React 19 status

  • Peer range widened; published dist is byte-identical to upstream 100.1.0
  • Verified: no direct usage of APIs removed in React 19; one transitive hit (react-transition-group findDOMNode via WithPopup) fixed in 100.1.2
  • If you hit a React 19 incompatibility, please open an issue so findings are shared publicly

License

Apache-2.0, same as upstream. Copyright freee K.K. (original work); modifications by fork contributors. See LICENSE.txt.


Original README (upstream)

世界を変えるためのデザインシステムです

Getting started

Install

TBD

Usage

スタイルを適用するため node_modules/vibes/vibes.css を読み込んでください。

from Sass:

@import 'node_modules/vibes/vibes_2021';

from JavaScript with CSS Modules:

import '@freee_jp/vibes/css';

スタイルを読み込んだら、vibes の React Component を次のように使うだけです。

import * as React from 'react';
import { Breadcrumbs } from '@freee_jp/vibes';
import { CompanyLogoT } from 'somewhere';

export default function App() {
  return (
    <div className="app">
      <CompanyLogoT size="fit-width" fill="default"/>
      <Breadcrumbs
        links={[
          { title: '取引', url: '/hub_pages/deals' },
          { title: '自動で経理', url: '/wallet_txns/stream' },
        ]}
      />
    </div>
  );
}

Contribution

こちらのガイドラインを参照してください。