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

@jabez007/heur-aegis-dex

v0.2.0

Published

An advanced Pokémon meta-analysis and team building engine designed with a retro GBA aesthetic. Built for stability, resilience, and precise competitive planning.

Readme

Heur-Aegis Dex 🐺

An advanced Pokémon meta-analysis and team building engine designed with a retro GBA aesthetic. Built for stability, resilience, and precise competitive planning.

Live Demo

🛠 Features

  • Dynamic Cup Builder: Define custom meta-games by selecting specific type pools and region constraints.
  • Meta-Analysis Grid: Real-time ranking of type combinations based on offensive coverage and defensive vulnerability.
  • Team Workbench: Assemble 3-member teams with automated "Auto-Fill" logic that suggests optimal partners based on current team weaknesses.
  • Retro Aesthetic: Fully themed GBA-style UI with pixel-perfect sprites and custom components.
  • High Performance: Client-side caching and optimized recursive team generation algorithms.

🧪 Tech Stack

  • Framework: Vue 3 (Composition API)
  • Language: TypeScript
  • Build Tool: Vite
  • Styling: SASS (SCSS)
  • Data Source: PokeAPI via pokedex-promise-v2
  • Quality Assurance: Vitest for unit testing, ESLint for code standards.
  • Deployment: GitHub Actions for automated deployment to GitHub Pages.

📦 Library Usage

Heur-Aegis Dex can also be used as a component library in other Vue 3 projects.

Installation

npm install @jabez007/heur-aegis-dex

Registration

You can register it as a plugin to make the entire app and all components available globally:

import { createApp } from 'vue'
import HeurAegisDex from '@jabez007/heur-aegis-dex'
import '@jabez007/heur-aegis-dex/style.css'

const app = createApp(App)
app.use(HeurAegisDex)
app.mount('#app')

// In your template:
// <HeurAegisDexMain />

Or import the main app component directly:

import { HeurAegisDexMain } from '@jabez007/heur-aegis-dex'
import '@jabez007/heur-aegis-dex/style.css'

// In your component:
// <HeurAegisDexMain />

Or import individual components:

import { PokemonCard } from '@jabez007/heur-aegis-dex'
import '@jabez007/heur-aegis-dex/style.css'

Note on Styling: To prevent the GBA aesthetic from leaking into your host application, all library styles are namespaced under the .heur-aegis-dex class. If you use HeurAegisDexMain, this is handled automatically. If you use individual components, you should wrap them in a container with this class:

<div class="heur-aegis-dex">
  <PokemonCard :pokemon="..." />
</div>

🚀 Development

npm run dev

Building for Production

npm run build

Testing and Linting

# Run unit tests
npm test

# Run linter
npm run lint

# Automatically fix linting issues
npm run lint:fix

🛡 Stability and Security

This project adheres to strict engineering standards:

  • Resilient Logic: Guarded data lookups and clamped indices prevent runtime crashes during data updates.
  • Deterministic Builds: Full dependency locking via package-lock.json ensures consistent behavior across CI environments.
  • Accessible Design: Semantic HTML and ARIA live regions ensure the tool remains operable for all users.

Guided by the Doctrine of the Spire.