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

eqoa-data

v2.0.4

Published

JSON file data for EQOA information such as guides/quests listed on Jadiction.com

Readme

EQOA Data

Structured EverQuest Online Adventures (EQOA) data package for quests, map zone coordinates, and image assets used by Jadiction.com (and free for others to use).

What This Repo Offers

  • Quests: quest datasets split into per-guide files (Quests/<set>/<guide>.json), with _meta.json for set title/subtitle and nested group labels.
  • Information: supplemental reference datasets (Information/*.json).
  • Images: generated URL exports for all images in images/ (including nested folders).

This package is published as ESM and intended for apps/sites that need EQOA reference data without scraping or manual copy/paste.

Install

npm install eqoa-data

Usage

import { Quests, Information, Images } from "eqoa-data";

const lowLevelQuests = Quests["1-20"];
const wizardGuide = lowLevelQuests.fayspire.wizard;
const startingCities = Information.starting_cities;
const bearWereImage = Images.weres_bearwere;

console.log(lowLevelQuests.title); // from _meta.json
console.log(wizardGuide.guide); // markdown guide body

// Each guide JSON includes contributor information
if (wizardGuide.contributors) {
  wizardGuide.contributors.forEach(contributor => {
    console.log(`Contributed by: ${contributor.login}`);
    // {login, id, commits}
  });
}

You can also import published images directly:

import mapImage from "eqoa-data/images/EQOA_Map.png";

Repository Layout

  • Quests/: source JSON folders for quest data (_meta.json + one JSON per guide).
  • Information/: source JSON files for non-quest reference data.
  • images/: static image assets (supports nested folders).
  • src/QuestsData.ts: generated quest aggregation into exported Quests.
  • src/InformationData.ts: generated information aggregation into exported Information.
  • src/index.ts: main package exports (Quests, Information, Images).
  • scripts/generate-contributors.ts: fetches GitHub contributors per guide.
  • scripts/generate-json-exports.ts: regenerates JSON data exports from Quests/ and Information/.
  • scripts/generate-images-export.ts: regenerates the Images export block from images/.

Available scripts:

  • npm run generate:contributors: fetches GitHub contributors and adds to guide files.
  • npm run generate:data: rebuilds src/QuestsData.ts and src/InformationData.ts from JSON folders.
  • npm run generate:images: rebuilds Images in src/index.ts from images/ recursively.
  • npm run build: regenerates JSON/image exports and builds distributable output to dist/ via tsup.
  • npm run build:release: runs contributor generation, then runs npm run build.
  • npm run prepack: validates generated exports/build before packaging for npm.
  • npm run dev: watch mode build.

Contributing

Contributions are welcome for quest corrections, new or improved quest data/formatting, and image assets (such as screenshots to better help with the guides).

When your PR is approved and merged, you'll automatically appear as a contributor on the guide pages you helped with! Contributors are fetched from GitHub's commit history and included in the published package.

Contribution Flow

(Easy) Utilize the editor at https://jadiction.com/en/eqoa/editor

OR

1. Fork the repo and create a branch.
2. Make your changes.
5. Run `npm run build` to ensure the package still compiles.
6. Open a Pull Request (PR) with change notes.

Contribution Guidelines/Notes

  • To your best ability, use proper grammar. Currently the generated guides are not matching a consistent formatting or holding the ideal standards, although I'd like to improve this later on.
  • "cons color" in strings used in guides get automatically replaced with a standard "CONS color [Image]"
  • To utilize images (once added to images/quests/) in the markdown, use this format:
![image alt attribute aka simple text explanation|WIDTHxHEIGHT](file_name)
![simple image summary|WxH](file_name)

In-use examples (can be found in Quests/23-47/35.json):

![Idol of Malice location|319x205](35_idol_of_malice)
![Idol of List location|320x205](35_idol_of_lust)
  • Preserve existing JSON style and key naming patterns.
  • When adding quest images into images/quests/, stick to the naming convention of level/category_relation.png

Examples:

  • 1-20_freeport_bard_level_1_example.png
  • 17_klick_anon_example.png
  • 35_idol_of_lust.png