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

@hesed/permission

v0.3.0

Published

Permission management plugin

Readme

permission

Permission management plugin

Version License Downloads/week

Usage

$ npm install -g @hesed/permission
$ permission COMMAND
running command...
$ permission (--version)
@hesed/permission/0.3.0 linux-x64 node-v24.16.0
$ permission --help [COMMAND]
USAGE
  $ permission COMMAND
...

Commands

permission permission allow PATTERN

Allow a command pattern in the permission list

USAGE
  $ permission permission allow PATTERN

ARGUMENTS
  PATTERN  Command pattern to allow.

DESCRIPTION
  Allow a command pattern in the permission list

EXAMPLES
  $ permission permission allow "*"

  $ permission permission allow jira

  $ permission permission allow "jira *"

  $ permission permission allow "jira issue create"

See code: src/commands/permission/allow.ts

permission permission check COMMAND

Check whether a command is allowed and which rule decides it

USAGE
  $ permission permission check COMMAND...

ARGUMENTS
  COMMAND...  Command to check, e.g. "jira issue create"

DESCRIPTION
  Check whether a command is allowed and which rule decides it

EXAMPLES
  $ permission permission check jira

  $ permission permission check "jira issue create"

  $ permission permission check jira issue create

See code: src/commands/permission/check.ts

permission permission disallow PATTERN

Disallow a command pattern in the permission list

USAGE
  $ permission permission disallow PATTERN

ARGUMENTS
  PATTERN  Command pattern to disallow.

DESCRIPTION
  Disallow a command pattern in the permission list

EXAMPLES
  $ permission permission disallow "*"

  $ permission permission disallow jira

  $ permission permission disallow "jira *"

  $ permission permission disallow "jira issue create"

See code: src/commands/permission/disallow.ts

permission permission export FILE

Export the permission configuration to a JSON file

USAGE
  $ permission permission export FILE

ARGUMENTS
  FILE  File path to export the permission configuration to

DESCRIPTION
  Export the permission configuration to a JSON file

EXAMPLES
  $ permission permission export permission.json

See code: src/commands/permission/export.ts

permission permission import FILE

Import the permission configuration from a JSON file

USAGE
  $ permission permission import FILE

ARGUMENTS
  FILE  File path to import the permission configuration from

DESCRIPTION
  Import the permission configuration from a JSON file

EXAMPLES
  $ permission permission import permission.json

See code: src/commands/permission/import.ts

permission permission list

List all rules in the permission list

USAGE
  $ permission permission list [--json]

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  List all rules in the permission list

EXAMPLES
  $ permission permission list

  $ permission permission list --json

See code: src/commands/permission/list.ts

permission permission remove PATTERN

Remove a rule from the permission list

USAGE
  $ permission permission remove PATTERN [--allow] [--disallow]

ARGUMENTS
  PATTERN  Pattern to remove from the permission list.

FLAGS
  --allow     Only remove the pattern from the allow list
  --disallow  Only remove the pattern from the disallow list

DESCRIPTION
  Remove a rule from the permission list

EXAMPLES
  $ permission permission remove jira

  $ permission permission remove "jira *"

  $ permission permission remove jira --allow

  $ permission permission remove jira --disallow

See code: src/commands/permission/remove.ts

permission permission reset

Reset all permission rules

USAGE
  $ permission permission reset [--confirm]

FLAGS
  --confirm  Skip the confirmation prompt

DESCRIPTION
  Reset all permission rules

EXAMPLES
  $ permission permission reset

  $ permission permission reset --confirm

See code: src/commands/permission/reset.ts