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

@kennofizet/rewardplay-frontend

v1.0.3

Published

RewardPlay frontend package - Token-based API client for RewardPlay

Readme

RewardPlay Frontend Package

Vue.js 3 component library for RewardPlay game interface.

Installation

Important: This package is part of an npm workspace. Dependencies are installed at the root level, not in this directory.

From Root (Recommended)

cd ../..  # Go to monorepo root
npm install

From Package Directory

npm install

This will install dependencies, but they'll be hoisted to the root node_modules/ (this is normal for workspaces).

What npm install Does

When you run npm install in this package:

  1. ✅ Installs dependencies listed in package.json
  2. ✅ Creates/updates node_modules/ at the root level (not here)
  3. ❌ Does NOT create local node_modules/ (workspace hoisting)
  4. ❌ Does NOT build or create dist files
  5. ❌ Does NOT modify source files

This is normal! npm workspaces hoist dependencies to the root to avoid duplication.

Development

For local development (like in the test environment), the package uses source files directly from src/. No build step is required.

The package.json is configured to point to src/index.js for local development, so Vite can resolve the source files directly.

Building for Production

If you need to build the package for distribution:

npm run production

This will create built files in the dist/ directory using Laravel Mix.

Local Development Setup

When using this package locally (via file: in package.json), Vite will resolve the source files directly. No build needed!

Where Are My Dependencies?

Dependencies are installed at:

rewardplay-packages/node_modules/  (root level)

Not at:

packages/frontend/node_modules/  (doesn't exist - this is normal!)