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

@vorionsys/security

v1.0.0

Published

Enterprise security modules for Vorion platform - WebAuthn, MFA, SIEM, ZKP, HSM, and more

Downloads

105

Readme

@vorion/security

Enterprise security modules for the Vorion platform. Provides 23 security modules covering authentication, cryptography, detection, governance, and compliance.

Internal package - Not published to npm. Requires hardening and test coverage before public release.

Modules

Authentication & Access

| Module | Import | Description | |--------|--------|-------------| | WebAuthn | @vorion/security/webauthn | FIDO2 passwordless authentication | | MFA | @vorion/security/mfa | Multi-factor authentication (TOTP) | | SSO | @vorion/security/sso | Single Sign-On (OIDC) | | PAM | @vorion/security/pam | Privileged Access Management (JIT, break-glass) | | Service Auth | @vorion/security/service-auth | Service-to-service authentication |

Cryptography

| Module | Import | Description | |--------|--------|-------------| | Crypto | @vorion/security/crypto | FIPS 140-2 compliant crypto operations | | HSM | @vorion/security/hsm | Hardware Security Module integration (AWS CloudHSM) | | KMS | @vorion/security/kms | Key Management Service (AWS KMS, Azure Key Vault, GCP KMS) | | Encryption | @vorion/security/encryption | Field-level encryption | | ZKP | @vorion/security/zkp | Zero-knowledge proofs |

Detection & Monitoring

| Module | Import | Description | |--------|--------|-------------| | SIEM | @vorion/security/siem | SIEM integration (Splunk, Elastic, Loki, Datadog) | | Anomaly | @vorion/security/anomaly | Anomaly detection (impossible travel, volume spikes) | | Threat Intel | @vorion/security/threat-intel | Threat intelligence (bot detection, IP reputation) | | Alerting | @vorion/security/alerting | Multi-channel alerting |

Governance & Policy

| Module | Import | Description | |--------|--------|-------------| | Policy Engine | @vorion/security/policy-engine | OPA-style policy evaluation | | Trust Oracle | @vorion/security/trust-oracle | Vendor risk scoring | | AI Governance | @vorion/security/ai-governance | AI governance controls |

Response & Compliance

| Module | Import | Description | |--------|--------|-------------| | Incident | @vorion/security/incident | Incident response with automated playbooks | | DLP | @vorion/security/dlp | Data loss prevention | | Headers | @vorion/security/headers | Security headers middleware | | API Keys | @vorion/security/api-keys | API key management | | Audit | @vorion/security/audit | Audit logging |

Usage

// Import specific modules via subpath
import { webauthn } from '@vorion/security/webauthn';
import { mfa } from '@vorion/security/mfa';
import { siem } from '@vorion/security/siem';

// Or import everything via barrel
import { webauthn, mfa, siem, crypto } from '@vorion/security';

Dependencies

  • Required: @simplewebauthn/server, jose, zod, argon2, ioredis, otplib, qrcode
  • Optional Peer: @aws-sdk/client-kms, @aws-sdk/client-cloudhsm-v2, @azure/keyvault-keys, @google-cloud/kms

Status

This package is under active development. Before publishing:

  • [ ] Add comprehensive test coverage
  • [ ] Enable TypeScript strict mode
  • [ ] Security audit of all modules
  • [ ] Separate cloud provider SDKs into optional peer dependencies
  • [ ] API stabilization

License

MIT