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

@theappagency/valinor

v5.12.0

Published

Public launcher for the Valinor CLI — fetches, SHA-256-verifies, caches, and runs the proprietary Valinor bundle from downloads.valinorci.com. Zero setup, zero secrets, zero npm auth.

Readme

@theappagency/valinor

The public launcher for the Valinor CLI — Camber's CI-native quality-governance tool.

npx @theappagency/valinor@latest --version
npx @theappagency/[email protected] claims-verify claims.yml

The launcher is trivial by design and contains no Valinor functionality itself. On each run it:

  1. resolves the requested version against the Valinor downloads endpoint (https://downloads.valinorci.com/manifest.json) — the launcher's own version pins the bundle version (the pipeline publishes them in lockstep), so @theappagency/[email protected] runs Valinor X.Y.Z;
  2. fetches the version's bundle (/v/<version>/valinor.tgz) and verifies its SHA-256 against the published SHA256SUMS, failing closed — a mismatched artifact is deleted, never executed;
  3. caches the verified bundle at ~/.valinor/cache/<version>/ — an already-cached, exactly-pinned version runs fully offline with no network I/O;
  4. executes the cached CLI, passing through all arguments and the exit code.

No npm registry auth, no .npmrc, no tokens, no secrets — npx it anywhere, including CI. The launcher sends no telemetry. Its only network activity is fetching the artifact above.

Environment variables

| Variable | Effect | | --- | --- | | VALINOR_VERSION | Run a specific version or dist-tag (e.g. 3.1.0, latest), overriding the launcher's own pinned version. | | VALINOR_DOWNLOADS_URL | Override the downloads endpoint base URL (staging/fixtures). | | VALINOR_CACHE_DIR | Override the cache location (default ~/.valinor/cache). | | VALINOR_FETCH_TIMEOUT_MS | Per-request fetch timeout in milliseconds (default 30000) — a silent/blackholed endpoint aborts here rather than hanging. | | VALINOR_LAUNCHER_DEBUG | Print full error causes (default output is the actionable message only). |

Licensing

This launcher is MIT-licensed. The Valinor CLI bundle it downloads is proprietary software of Camber–The App Agency, licensed under the terms shipped inside the downloaded artifact (the LICENSE file in the bundle). Installing this launcher conveys no rights to the bundle.