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

@lit-protocol/pkp-auth-modal

v0.1.0

Published

A reusable authentication modal component for Lit Protocol PKP authentication.

Downloads

1

Readme

Lit PKP Auth Modal

A reusable authentication modal component for Lit Protocol PKP authentication.

Installation

npm install @lit-protocol/pkp-auth-modal
# or
yarn add @lit-protocol/pkp-auth-modal
# or
pnpm add @lit-protocol/pkp-auth-modal

Usage

React Usage

import { LitPKPAuthModal } from '@lit-protocol/pkp-auth-modal';
import { useState } from 'react';

function App() {
  const [isOpen, setIsOpen] = useState(false);

  const handleAuth = (sessionSigs) => {
    console.log('Authentication successful:', sessionSigs);
    // sessionSigs contains the authentication signatures
  };

  return (
    <LitPKPAuthModal
      isOpen={isOpen}
      onClose={() => setIsOpen(false)}
      onAuth={handleAuth}
      enabledMethods={['google', 'discord', 'webauthn', 'wallet', 'stytch']}
      litNetwork="cayenne"
    />
  );
}

Vanilla JavaScript Usage

<!-- Add the modal container -->
<div id="modal-container"></div>

<!-- Add the script -->
<script src="https://cdn.jsdelivr.net/npm/@lit-protocol/pkp-auth-modal/dist/pkp-auth-modal.js"></script>

<script>
  window.LitPKPAuthModal.init({
    container: '#modal-container',
    onAuth: function(sessionSigs) {
      console.log('Authentication successful:', sessionSigs);
    },
    enabledMethods: ['google', 'discord', 'webauthn', 'wallet', 'stytch'],
    litNetwork: 'cayenne'
  });
</script>

Environment Variables

Create a .env file in your project root:

# Required for Stytch authentication
NEXT_PUBLIC_STYTCH_PROJECT_ID="your-stytch-project-id"
NEXT_PUBLIC_STYTCH_PUBLIC_TOKEN="your-stytch-public-token"

# Optional: Configure Lit Network (default: 'cayenne')
NEXT_PUBLIC_LIT_NETWORK="cayenne"

To get your Stytch credentials:

  1. Create an account at Stytch Dashboard
  2. Create a new project
  3. Navigate to API Keys
  4. Copy your Project ID and Public Token

Building from Source

# Clone the repository
git clone https://github.com/LIT-Protocol/lit-pkp-auth-demo.git

# Navigate to modal directory
cd lit-pkp-auth-demo/modal

# Install dependencies
npm install

# Build the package
npm run build

The built files will be available in the dist directory:

  • dist/pkp-auth-modal.js - UMD bundle for direct browser usage
  • dist/index.js - CommonJS bundle for Node.js
  • dist/index.esm.js - ES module bundle for modern bundlers

Configuration Options

| Option | Type | Required | Default | Description | |--------|------|----------|---------|-------------| | container | string | Yes (Vanilla JS only) | - | CSS selector for the modal container | | onAuth | function | Yes | - | Callback function called after successful authentication | | onClose | function | No | - | Callback function called when modal is closed | | isOpen | boolean | No | false | Control modal visibility (React only) | | litNetwork | string | No | 'cayenne' | Lit Protocol network to use | | enabledMethods | Array | No | all | Array of enabled authentication methods | | theme | object | No | - | Custom theme options for the modal |

Theme Customization

interface ThemeOptions {
  primaryColor?: string;
  backgroundColor?: string;
  textColor?: string;
  buttonTextColor?: string;
  modalBorderRadius?: string;
}

// Example usage
const theme = {
  primaryColor: '#3B82F6',
  backgroundColor: '#FFFFFF',
  textColor: '#1F2937',
  buttonTextColor: '#FFFFFF',
  modalBorderRadius: '8px'
};

### Authentication Methods

Available authentication methods:
- `'google'` - Google OAuth login
- `'discord'` - Discord OAuth login
- `'ethereum'` - Web3 wallet connection
- `'webauthn'` - WebAuthn/Passkey authentication
- `'stytch'` - Stytch OTP authentication

## Development

1. Install dependencies:
```bash
npm install
  1. Build the package:
npm run build
  1. Test locally:
npm run dev

License

MIT License