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

astro-humans

v1.0.1

Published

Deterministic humans.txt generation for Astro sites at build time

Downloads

208

Readme

astro-humans

Standards‑friendly humans.txt generation for Astro sites

astro-humans is a static‑first Astro integration that generates a clean, human‑readable humans.txt file at build time.

It exists for one reason:

The internet is for humans.
This file documents the people and tools behind a website.

No runtime JavaScript.
No tracking.
No build coupling.
No opinionated enforcement.


What this plugin does

On astro build, the plugin:

  • Ensures a humans.config.json file exists (first run only)
  • Supports automatic migration from legacy root config → config-files/
  • Loads and normalises configuration safely (fail‑closed)
  • Generates a deterministic humans.txt
  • Writes to:
    • /humans.txt (canonical)
    • /.well-known/humans.txt (optional)
  • Overwrites output files deterministically on each build

What this plugin does NOT do

  • ❌ No runtime middleware
  • ❌ No validation policing
  • ❌ No schema enforcement beyond safety
  • ❌ No auto‑population or guessing
  • ❌ No ownership claims or legal statements

If configuration is invalid or disabled, no file is written.


Installation

npm install astro-humans

Usage

Add the integration to your Astro config:

import { defineConfig } from "astro/config";
import astroHumans from "astro-humans";

export default defineConfig({
  integrations: [
    astroHumans()
  ]
});

Configuration location

On first run, the plugin ensures this file exists:

config-files/humans.config.json

Automatic migration

If a legacy file exists at:

/humans.config.json

It will be moved automatically to:

/config-files/humans.config.json

This happens once and never overwrites existing files.


Example configuration

{
  "enabled": true,
  "output": {
    "wellKnown": false,
    "root": true
  },
  "humans": {
    "team": [
      {
        "name": "Your Name",
        "role": "Developer",
        "contact": "https://example.com"
      }
    ],
    "site": {
      "name": "Example Website",
      "url": "https://example.com",
      "language": "en",
      "lastUpdated": "2026-01-01"
    },
    "technology": [
      "Astro",
      "TypeScript",
      "HTML",
      "CSS"
    ],
    "notes": [
      "Built with care.",
      "The internet is for humans."
    ]
  }
}

Generated output

/* TEAM */
Name: Your Name
Role: Developer
Contact: https://example.com

/* SITE */
Name: Example Website
URL: https://example.com
Language: en
Last Updated: 2026-01-01

/* TECHNOLOGY */
Astro
TypeScript
HTML
CSS

/* NOTES */
Built with care.
The internet is for humans.

Sections (optional)

All sections are optional and omitted if empty:

  • TEAM – People involved in building the site
  • SITE – Basic site metadata
  • TECHNOLOGY – Tools and platforms used
  • NOTES – Human‑readable comments

There is no required schema beyond basic safety.


Failure behaviour

This plugin is intentionally fail‑silent.

If any of the following occur:

  • Config file missing
  • JSON invalid
  • enabled: false

➡️ No humans.txt is written

Your build will continue normally.


Philosophy

  • Humans.txt is not a legal document
  • Humans.txt is not ownership proof
  • Humans.txt is not machine‑enforced

It is a courtesy file — nothing more, nothing less.


License

MIT © Velohost UK Limited


Author

Built and maintained by Velohost UK Limited https://velohost.co.uk/

Project homepage:
https://velohost.co.uk/plugins/astro-humans/