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

robonomics-ui-vue

v1.0.0

Published

Vue 3 UI components for Robonomics dApp

Readme

Robonomics UI Vue

A set of Vue 3 UI components for the Robonomics dApp.
This package provides shared interface elements and utilities used in the decentralized frontend of Robonomics app.


📦 Build

This project uses Vite to build a Vue 3 component library.


🔧 Production Build

To build the library for production (for publishing or packaging):

yarn build

This will:

  • Compile the library into the dist/ folder
  • Copy the following metadata files into dist/:
    • package.json
    • README.md
    • LICENSE
    • NOTICE
    • AUTHORS

🧪 Local Development Build

To build and test the package locally with a dependent dApp project:

yarn build-dev

This will:

  • Build the library
  • Copy the compiled output directly into the dApp’s node_modules/robonomics-ui-vue/ folder

The path is configured via a local config file:

// build.config.local.mjs
export const dappPackagePath = '/absolute/path/to/your-dapp/node_modules/robonomics-ui-vue/';

Use build.config.example.mjs as a reference.

Note: This file is ignored via .gitignore and should not be committed.


🚀 Publish a new version

  1. Build the library (optional for local checks)

    yarn build
  2. Bump version & commit

    git add package.json
    git commit -m "chore: release vX.Y.Z"
    git push
  3. Create an annotated tag

    git tag -a vX.Y.Z -m "Release vX.Y.Z"
  4. Push the tag

    git push origin vX.Y.Z

That’s all! The GitHub Action defined in .github/workflows/publish.yml will:

  • Build the project
  • Run npm publish --access public from dist/, so only the compiled package is uploaded
  • Create a GitHub Release with autogenerated notes

Manual publish (without CI)

yarn build && cd dist && npm publish --access public

Ensure NPM_TOKEN with publish permission is configured.


⚖️ License

This project is licensed under the Apache License 2.0.

You are free to:

  • Use, modify, and distribute the code
  • Include this library in personal or commercial projects

However, if you modify and redistribute the code, you must:

  • Clearly state what changes were made
  • Preserve the original LICENSE, NOTICE, and AUTHORS files

📄 See full license terms in the LICENSE file.


👥 Authors

See AUTHORS for a list of contributors.


📄 Metadata

The following files are included in builds for clarity and compliance:

  • LICENSE – license terms (Apache 2.0)
  • NOTICE – copyright and attribution
  • AUTHORS – list of project authors
  • README.md – this file