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

@rpgm-tools/neo-angband-content

v1.0.0

Published

The core content pack: Angband 4.2.6 gamedata compiled to schema-validated pack format

Readme

@rpgm-tools/neo-angband-content

Angband 4.2.6's gamedata, compiled to the schema-validated pack format Neo Angband boots from, plus the compiler that produced it.

npm install @rpgm-tools/neo-angband-content

@rpgm-tools/neo-angband-core is the rules and holds no content: it can roll dice, run the effect interpreter and read a save, but it cannot generate a populated level without a pack handed to it. This is that pack.

The base game is pack zero

The gamedata is not special-cased anywhere. monster.txt, object.txt, terrain.txt and the rest go through the same pipeline any mod's content goes through, and come out as the same JSON records with the same schema. That is what makes a total conversion possible by construction rather than by permission: a mod that replaces every record is doing what the base game already does.

What is in the tarball

| Path | What it holds | | --- | --- | | pack/ | 45 compiled JSON files: the content itself, which is what most consumers want | | dist/ | The compiler: compileGamedata, the line parser, and the per-file specs |

import monsters from "@rpgm-tools/neo-angband-content/pack/monster.json" with { type: "json" };

To recompile from upstream's text files, which needs an Angband checkout, not shipped here:

import { compileGamedata, gamedataSpecs } from "@rpgm-tools/neo-angband-content";

Exactness is the whole point

The compiler is not a convenient reader. It is checked against upstream's own parser (reference/src/parser.c) directive by directive, and the pack is checked back against the text it came from: a field the compiler drops silently is the failure mode that matters, because the game then plays subtly differently with nothing to see. Those checks are data-exactness.test.ts and the *.upstream.test.ts files in src/.

Versioning

The pack moves with the engine and carries the game's version, not Angband's. PARITY_BASELINE in @rpgm-tools/neo-angband-core is the upstream release this content was compiled from and moves independently.

Licence

Neo Angband keeps Angband's dual licence, as the Angband project asks of its variants: GNU GPL v2, or the Angband licence, at your option. npm can only carry one SPDX identifier, so the manifest says GPL-2.0-only, the more restrictive of the two. The full text of both is in LICENSE.md.

The gamedata in pack/ is Angband's, by Ben Harrison, James E. Wilson, Robert A. Koeneke and the Angband contributors. The compiler and the pack format are by neostryder / RPGM Tools.