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

@bimdata/design-system

v2.4.1

Published

> BIMData's Design System is an open-source DS. The documentation is available here: [design.bimdata.io](https://design.bimdata.io/)

Readme

BIMData Design System

BIMData's Design System is an open-source DS. The documentation is available here: design.bimdata.io

Used by

:runner: Getting started

npm i @bimdata/design-system

:raising_hand: Compatibility

BIMData Design System is a library compatible with Vue 3.

:open_hands: Contributing

We are always on the lookout for contributors to help us fix bugs, create new features, or help us improve project documentation. If you are interested, feel free to create a PR or open a discussion on this topic.

Project setup

If you want to dev on the design system, follow these instruction:

npm install

### Compiles and hot-reloads for development
npm run dev

### Run your tests
npm run test

:package: Publish / :rocket: Deploy

Publish new version

To publish & deploy a new design-system version checkout to develop branch then:

./deploy.sh

deploy.sh is an helper to deploy a new released version on master.

The script take care of all the tricky things for you so you should always use it for deployment unless you have to perform a specific action (like bumping an old release version). If you do need to perform such action, please refer to the next section.

Semantic release

This repo use semantic-release for tag management and deployment.

It is possible to automatically publish a new npm package from the semantics of a commit message. The keywords are MAJOR, to publish a major version (X.0.0), MINOR, to publish a minor version (1.X.0), and PATCH, to publish a fix (1.0.X).

They must correspond to the following syntax:

/(MAJOR|MINOR|PATCH): .*/

Example :

git commit -m "MINOR: explain the new feature to deploy"

The branches on which it is possible to publish are the following:

| Branches | Git tag | NPM version | Env | | ------------- | :-----------------: | ------------------------- | :-----: | | develop | 1.3.0-beta.1 * | 1.0.3-beta.1tag: next | staging | | release/X.X.x | 1.1.6 | 1.1.6tag: 1.1.x | | | master | 1.2.8 | 1.2.8tag: latest | prod |

* The develop branch will only release beta.x in succession until the release candidate or a higher version has been deployed to master.

For Merging this branches together, and to avoid any unexpected behavior, use --no-ff git merge option. After deploying a new latest tag with master branch, merge master into develop to update package.json and CHANGELOG.md.

License

BIMData Design System is published under the term of MIT License (see LICENSE).