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

@hulumi/baseline

v1.5.0

Published

Hardened Pulumi baseline components for AWS and GitHub — SecureBucket, AccountFoundation, AWS organization guardrails, secure primitives, detection foundations, SecureRepository, OrgFoundation. SLSA Build L3 attestation on every release.

Readme

@hulumi/baseline

Hardened-by-default Pulumi component resources for AWS and GitHub. Drop-in replacements for raw cloud primitives that ship with public-access blocks, SSE-KMS, TLS-only policies, CloudTrail multi-region, GuardDuty, Security Hub, IAM password policies, KMS rotation, and the rest of the "hardening checklist you re-derive on every project" wired up correctly out of the box.

Part of the Hulumi toolkit. Apache-2.0. SLSA Build L3 attestation on every published tarball.

Install

pnpm add @hulumi/baseline @pulumi/aws @pulumi/pulumi
# Optional, for the GitHub-side surface:
pnpm add @pulumi/github

@hulumi/[email protected] accepts any caret-compatible Pulumi SDK (@pulumi/aws in the 7.x line, @pulumi/pulumi in the 3.x line, @pulumi/github in the 6.x line). The versions Hulumi is tested against are listed in this package's peerDependencies — that's the floor, not a ceiling. If you already have these SDKs installed at any compatible version, you don't need to change them. The 72h/24h cooling-off CI gate applies inside Hulumi when we bump our tested floor — see the project SECURITY.md.

Quick-start — SecureBucket

import { SecureBucket } from "@hulumi/baseline/aws";

const logs = new SecureBucket("audit-logs", {
  tier: "startup-hardened",
  bucketName: "my-org-audit-logs",
});

Sandbox vs Startup-Hardened tiers control which sub-resources land (public-access block, SSE-KMS, versioning, TLS-only bucket policy, CloudTrail integration, etc.). See docs/tiers.md.

Quick-start — AccountFoundation

import { AccountFoundation } from "@hulumi/baseline/aws";

const foundation = new AccountFoundation("primary", {
  tier: "startup-hardened",
  homeRegion: "us-east-1",
});

Composes CloudTrail, Config, GuardDuty, Security Hub, IAM password policy

Quick-start — SecureRepository (GitHub)

import { SecureRepository } from "@hulumi/baseline/github";

const repo = new SecureRepository("infra", {
  owner: "my-org",
  name: "infra",
  tier: "startup-hardened",
  // acknowledgePublic: true,  // required to set visibility:"public"
});

Hardened defaults: branch protection, required signed commits, required status checks, linear history, admin enforcement, restricted bypass actors, secret scanning, push protection, dependabot security updates. See docs/components/secure-repository.md.

What you get

| Surface | Components | | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | AWS | SecureBucket, AccountFoundation (and its sub-components — CloudTrail, Config, GuardDuty, SecurityHub, IamBaseline, KmsRing), AwsOrganizationSecurityFoundation, secure AWS primitives (SecureIamDeploymentRole, SecureWorkloadRole, SecureSecret, SecureLaunchTemplate), and SecurityDetectionFoundation | | GitHub | SecureRepository, OrgFoundation (with switchable Code Security Configurations backend) | | Tier matrix | Tier enum + assertValidTier ("sandbox" \| "startup-hardened") | | Mappings | IDs-only framework citation tables — mappings/{ccm,cis-aws,nist-800-53-r5,atlas} (no verbatim CCM / AICM / CAIQ / CIS / NIST control text — see docs/mappings/licensing.md) |

Pair with @hulumi/policies (CrossGuard policy packs that catch what the components can't) and @hulumi/drift (local-first drift classifier).

Verifying SLSA attestations

Every published tarball ships with GitHub Artifact Attestations provenance from the reusable sign-and-publish.yml release lane. Verify before installing:

pnpm pack @hulumi/[email protected] --pack-destination .
gh attestation verify ./hulumi-baseline-1.5.0.tgz \
  --repo kerberosmansour/hulumi

Documentation

License

Apache-2.0 — see LICENSE and the project-level NOTICE.