UNPKG

shogun-core

Version:

SHOGUN CORE - Core library for Shogun Ecosystem

14 lines (13 loc) 630 B
// Base plugin interface and types export { BasePlugin } from './base.js'; // WebAuthn plugin exports export { Webauthn } from './webauthn/webauthn.js'; export { WebauthnPlugin } from './webauthn/webauthnPlugin.js'; // Ethereum plugin exports export { Web3Connector } from './web3/web3Connector.js'; export { Web3ConnectorPlugin } from './web3/web3ConnectorPlugin.js'; // Bitcoin plugin exports export { NostrConnector } from './nostr/nostrConnector.js'; export { NostrConnectorPlugin } from './nostr/nostrConnectorPlugin.js'; // Challenge-Response plugin exports export { ChallengePlugin } from './challenge/challengePlugin.js';