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

@found-in-space/stellarium-skycultures-western

v0.3.0

Published

Western Stellarium sky culture assets packaged for Found in Space viewers

Readme

@found-in-space/stellarium-skycultures-western

Packaged Western constellation artwork derived from Stellarium sky cultures for Found in Space viewers.

What This Package Contains

  • dist/manifest.json: generated culture manifest with image anchors, ICRS and RA/Dec coordinates, anchor astrometry metadata, asterisms, and boundary metadata embedded
  • dist/illustrations/*: packaged artwork assets
  • dist/description.md: upstream culture description

The viewer should consume the generated manifest rather than the package's source-only HIP anchor lookup. Apps that only need anchored artwork can import the canonical anchored-image view from @found-in-space/stellarium-skycultures-western/anchored-image.

Generated dist/ output is intended to stay out of git. Build it locally or via prepack before publishing to npm.

Manifest Shape

Anchor records use object-shaped coordinates:

{
  "hip": 97649,
  "pixel": { "x": 163, "y": 232 },
  "icrs": { "x": 0.459, "y": -0.875, "z": 0.154 },
  "raDeg": 297.698,
  "decDeg": 8.87
}

astrometry.anchors declares that these anchors are ICRS unit vectors from the Hipparcos New Reduction catalogue, propagated from J1991.25 to J2016.0. Boundary edges are preserved separately under boundaries with their own source, type, and epoch metadata.

Build

From the repo root:

npm run build -- western

Usage

No-bundler or CDN usage can fetch the generated manifest and resolve images relative to it:

import { manifestUrl } from '@found-in-space/stellarium-skycultures-western';

const manifestResponse = await fetch(manifestUrl);
const manifest = await manifestResponse.json();

Bundler usage can import asset URLs that are visible to Vite, Astro client scripts, Webpack 5, Rspack, Rollup with asset plugins, and Parcel with package exports enabled:

import { bundledManifest } from '@found-in-space/stellarium-skycultures-western/bundled';

For @found-in-space/anchored-image, import the canonical manifest view:

import { anchoredImageManifest } from '@found-in-space/stellarium-skycultures-western/anchored-image';

Astro frontmatter runs on the server, so use direct asset imports there:

import orionImage from '@found-in-space/stellarium-skycultures-western/illustrations/orion.webp';
const orionUrl = typeof orionImage === 'string' ? orionImage : orionImage.src;

The repository contains buildable fixtures for Astro static imports, Astro client scripts, Vite, Webpack 5, Rspack, Rollup, Parcel, esbuild direct asset imports, and Node ESM:

npm run examples:build

Parcel 2 requires:

{
  "@parcel/resolver-default": {
    "packageExports": true
  }
}

The package intentionally does not publish data-url assets. Apps that need a single JavaScript artifact should inline assets in their own bundler configuration.