UNPKG

dwnpm

Version:

Decentralized Registry Package Manager (DRPM) helps developers publish, install, find and manage Decentralized Packages (DPKs) published to Decentralized Web Nodes (DWNs). DRPM does this by looking up a Decentralized Identifier (DID) to find its DID docum

19 lines 822 B
#!/usr/bin/env node import { ConnectCommand } from './commands/connect.js'; import { ContextCommand } from './commands/context.js'; import { PackageCommand } from './commands/package.js'; import { ProfileCommand } from './commands/profile.js'; import { RegistryCommand } from './commands/registry.js'; import { SetupCommand } from './commands/setup.js'; import { DwnCommand } from './commands/dwn.js'; export declare const DEFAULT_DATAPATH: string; export interface ICommand { execute({ options, subcommand, }: { options?: any; subcommand?: string; }): Promise<void>; } export type CommandType = ConnectCommand | ContextCommand | PackageCommand | ProfileCommand | RegistryCommand | SetupCommand | DwnCommand; declare const _default: void; export default _default; //# sourceMappingURL=drpm.d.ts.map