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

metronics-vue

v1.7.17

Published

```bash npm install --D tailwindcss@^3.4.17 postcss autoprefixer mini-svg-data-uri postcss-import postcss-loader postcss-nesting postcss-preset-env ```

Readme

Metronics Vue

Setting Up

npm install --D tailwindcss@^3.4.17 postcss autoprefixer mini-svg-data-uri postcss-import postcss-loader postcss-nesting postcss-preset-env
// postcss.config.js
export default {
  "plugins": {
    'postcss-preset-env': {},
    'postcss-import': {},
    'tailwindcss/nesting': 'postcss-nesting',
    'postcss-preset-env': {
      'features': { 
        'nesting-rules': false
      }
    },
    'tailwindcss': {},
    'autoprefixer': {},
  }
};
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  ...require("metronics-vue/tailwind.config"),
  content: ["./index.html", "node_modules/metronics-vue/src/components/**/*.vue"],
};

PUBLISHING METRONICS-VUE TO NPM

Follow these steps carefully to publish the Metronics-Vue package to npm:

Prerequisites

  • Ensure you have an npm account and are logged in via your terminal.

Publishing Steps

  1. Sync with main Branch: Before you begin, make sure your local main branch is fully up-to-date with the remote repository. This prevents publishing outdated code.
  2. Build the Project: Execute the command "npm run build-only" in your terminal. This command compiles and prepares your project for publishing.
  3. Increment Version Number: Open your package.json file and update the version field. It's crucial to increment this version number incrementally (e.g., if the current version is "1.0.0", change it to "1.0.1" or "1.1.0"). Using a plus sign like "1.0.0+" is generally not recommended for versioning; use standard semantic versioning (e.g., major.minor.patch).
  4. Authenticate with npm: If you're not already logged in, run "npm login" in your terminal and follow the prompts to authenticate your npm account.
  5. Publish to npm: Finally, after completing all the preceding steps, publish your package by running the command "npm publish".

Important Notes:

  • Always ensure your main branch is clean and up-to-date before publishing.
  • Double-check the version number in package.json to avoid publishing with a duplicate or incorrect version.
  • Semantic Versioning (SemVer) is highly recommended for managing your package versions.