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

@adaptiveworx/iac-schemas

v0.1.4

Published

Region aliases, canonical region names, and Zod-derived schema types for AdaptiveWorX™ infrastructure-as-code. Pure data + types — no runtime dependencies.

Readme

@adaptiveworx/iac-schemas

Region aliases, canonical region names, and Zod-derived schema types for AdaptiveWorX™ Flow infrastructure-as-code.

This package is pure data + types — zero runtime dependencies. It's the source-of-truth for region resolution across the @adaptiveworx/iac-* packages and is safe to import from any TypeScript project.

Install

pnpm add @adaptiveworx/iac-schemas
# or
yarn add @adaptiveworx/iac-schemas
# or
npm install @adaptiveworx/iac-schemas

Usage

Region resolution

import { regions } from "@adaptiveworx/iac-schemas";

// AWS region aliases
regions.aws.aliases.use1; // "us-east-1"
regions.aws.aliases.usw2; // "us-west-2"

// Azure region aliases
regions.azure.aliases.eus2; // "eastus2"

// Available canonical regions per cloud
regions.aws.regions; // ["us-east-1", "us-west-2", ...]

Direct JSON import

For tools that prefer raw JSON (e.g. JSON Schema validators, build pipelines):

import regions from "@adaptiveworx/iac-schemas/regions" with { type: "json" };

Generated Zod schema types

import type { /* StackContext, DeploymentConfig, etc. */ } from "@adaptiveworx/iac-schemas/generated/schemas/types";

The generated types.d.ts is produced from the Zod schemas in @adaptiveworx/iac-core and shipped pre-generated; consumers don't need a build step.

What ships

| Path | Contents | |---|---| | dist/index.js + dist/index.d.ts | Library entry exporting regions + Regions type | | config/regions.json | Region alias data (also accessible via ./regions subpath) | | generated/schemas/types.d.ts | Pre-generated TypeScript declarations from Zod schemas | | generated/schemas/openapi.json | OpenAPI 3.1 spec for the schemas | | generated/schemas/json/*.json | Per-schema JSON Schema (Draft 2020-12) files |

Stability

This is a 0.x release. The shape of regions.* and the generated types may change in backwards-incompatible ways before 1.0. Once 1.0 ships, the package will follow Semantic Versioning.

Region aliases (use1, usw2, etc.) are considered stable identifiers and won't be renamed; new ones may be added.

License

Apache 2.0. See NOTICE.

Repository + contributing

This package is developed in the AdaptiveWorX/iac-worx monorepo at libs/iac/schemas/. See CONTRIBUTING.md for setup, workflow conventions, and the release process. File issues at https://github.com/AdaptiveWorX/iac-worx/issues.