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

@mosaic-code/first-nations-activists-data

v0.2.1

Published

Test data package containing first nations activists from around the world

Readme

First Nations Activists Dataset

Real biographies of First Nations, Indigenous, Aboriginal, and tribal activists from around the world — packaged as test data for use in demos, fixtures, and test suites.

Please read the Cultural Notice before using this dataset.

Quickstart

npm install @mosaic-code/first-nations-activists-data @mosaic-code/test-data-factory
import DataFactory from "@mosaic-code/test-data-factory";
import firstNationsActivistsData from "@mosaic-code/first-nations-activists-data";

// The acknowledgment should come from a deliberate user opt-in, not be
// hardcoded. In CI/tests an env var works; in a UI, surface a
// confirmation prompt and pass its result. Without this set to true, the
// factory loads no data — your test suite still runs, just without this
// dataset included.
const factory = new DataFactory(firstNationsActivistsData, {
  acknowledgeDeceasedFirstNations: process.env.ACKNOWLEDGE_FIRST_NATIONS === "true",
});

// Three random people for your test
const users = factory.getPeople(3);

// A specific person by id
const winona = factory.getPerson("winona-laduke");

// People in a particular group
const aim = factory.getPeopleInGroup("american-indian-movement");

For deterministic output across test runs, call factory.setSeed(<number>) first.

See the framework README for the full DataFactory API.

⚠️ Important Cultural Notice

This dataset contains names, images, and biographical information of deceased Indigenous persons.

In keeping with Indigenous cultural protocols and values, we acknowledge that:

  • Many Indigenous communities have specific cultural practices regarding the sharing of information about deceased persons
  • Some communities may prefer that names, images, or stories of deceased ancestors not be shared publicly
  • Each Indigenous culture has unique protocols around honoring and remembering those who have passed on

If you are using this dataset and have concerns about cultural appropriateness or specific protocols that should be observed, please contact us immediately.

Every effort has been made to present these individuals with dignity and respect, focusing on their public contributions to Indigenous rights and environmental justice. However, technical datasets cannot fully capture the cultural significance and protocols surrounding Indigenous knowledge keepers and activists.


Purpose

This dataset contains biographical information about First Nations, Indigenous, Aboriginal, and tribal activists from around the world who have dedicated their lives to protecting Indigenous rights, traditional lands, and cultural heritage. These individuals have fought against colonization, environmental destruction, and the erasure of Indigenous knowledge systems.

Historical Accuracy

All entries in this dataset are based on real people and documented historical events. If any of these entries contain factual errors, please let us know, or, ideally, create a Pull Request with a fix.

Required Cultural Acknowledgment

Applications using this dataset MUST include appropriate cultural acknowledgments and deceased persons notices before displaying any data.

Contributing

When adding new entries:

  • Verify information through multiple historical sources
  • Consult with relevant Indigenous communities when possible
  • Follow cultural protocols for discussing deceased persons
  • Use respectful language that centers Indigenous perspectives
  • Include appropriate cultural context and terminology
  • Ensure geographic diversity across Indigenous communities
  • Test data must clearly indicate Indigenous identity and cultural affiliation

Data Quality Requirements

  • Biographical information must be substantial (100+ characters) and respectful
  • Cultural markers must be present in tags or biographical content
  • Contact information must use clearly fake .test domains and 555 phone numbers
  • Reference links should point to reliable historical sources

License

MIT License - See LICENSE file for details.

Releasing

Use conventional commits for changes (prefix with feat:, fix:, docs:, etc.):

# Preview changelog before release
npm run release:dry

# Release (updates changelog, bumps version, pushes, publishes)
npm run release:patch   # 0.1.0 → 0.1.1
npm run release:minor   # 0.1.0 → 0.2.0
npm run release:major   # 0.1.0 → 1.0.0