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

@landofassets/cli

v1.5.0

Published

CLI tool for Land of Assets platform

Readme

@landofassets/cli

Command-line interface for the Land of Assets platform.

Installation

npm install -g @landofassets/cli
# or
pnpm add -g @landofassets/cli
# or
yarn global add @landofassets/cli

Quick Start

# Authenticate with your account
loa auth login

# List your organizations
loa orgs list

# List projects in an organization
loa projects list --org my-org

# List assets in a project
loa assets list --org my-org --project my-project

Tip: Use loa <command> --help or loa <category> --help to see available commands and their descriptions. For example, loa auth --help or loa assets --help.

Commands

Authentication

loa auth login          # Log in to your account (opens browser)
loa auth logout         # Log out and clear credentials
loa auth status         # Show current authentication status

Configuration

loa config set --org <org> [--project <project>]   # Set default org and/or project
loa config get                                    # Get current configuration
loa config clear [--org] [--project]              # Clear configuration

Organizations

loa orgs list                  # List all organizations
loa orgs get <slug>            # Get organization details
loa orgs create                # Create a new organization
loa orgs update <slug>         # Update an organization
loa orgs delete <slug>         # Delete an organization

Projects

loa projects list --org <org>                    # List projects
loa projects get --org <org> --project <slug>    # Get project details
loa projects create --org <org>                  # Create a new project
loa projects update --org <org> --project <slug> # Update a project
loa projects delete --org <org> --project <slug> # Delete a project

Assets

loa assets list --org <org> --project <project>                 # List assets
loa assets get --org <org> --project <project> --asset <slug>   # Get asset details
loa assets create --org <org> --project <project>               # Create a new asset
loa assets update --org <org> --project <project> --asset <slug> # Update an asset
loa assets delete --org <org> --project <project> --asset <slug> # Delete an asset
loa assets download --org <org> --project <project> --asset <slug> # Download asset files
loa assets thumbnail --org <org> --project <project> --asset <slug> # Get asset thumbnail

Asset Versions

loa versions list --org <org> --project <project> --asset <asset>     # List versions
loa versions get --org <org> --project <project> --asset <asset> --version <id> # Get version
loa versions create --org <org> --project <project> --asset <asset>   # Create version
loa versions delete --org <org> --project <project> --asset <asset> --version <id> # Delete version

Members

loa members list --org <org> [--project <project>]                # List members
loa members update <userName> --role <role> --org <org> [--project <project>]  # Update member role
loa members delete <userName> --org <org> [--project <project>]  # Remove member

Member Invites

loa member-invites create <usernameOrEmail> --org <org> [--project <project>]  # Invite a user
loa member-invites list --org <org> [--project <project>]         # List invites
loa member-invites delete <memberInviteId>                       # Delete an invite

Webhooks

loa webhooks create <url> --org <org> [--project <project>] --events <events>  # Create webhook
loa webhooks list --org <org> [--project <project>]         # List webhooks
loa webhooks delete <webhookId> --org <org> [--project <project>]  # Delete webhook

API Tokens

loa api-tokens list          # List your API tokens
loa api-tokens create        # Create a new API token
loa api-tokens delete <id>   # Delete an API token

Service Accounts

loa service-accounts list --org <org>          # List service accounts
loa service-accounts create --org <org>        # Create a service account
loa service-accounts delete --org <org> --id <id> # Delete a service account

Comments

loa comments list --org <org> --project <project> --asset <asset>     # List comments
loa comments create --org <org> --project <project> --asset <asset>   # Create comment
loa comments edit --org <org> --project <project> --asset <asset> --id <id> # Edit comment
loa comments delete --org <org> --project <project> --asset <asset> --id <id> # Delete comment

Notifications

loa notifications list             # List notifications
loa notifications mark-read <id>   # Mark notification as read
loa notifications mark-all-read    # Mark all notifications as read

Health Check

loa health                 # Check API health status

Configuration

The CLI stores configuration in ~/.config/loa/config.json. Available settings:

  • host - API base URL (default: https://api.landofassets.com, typically doesn't need to be set)
  • output - Output format: json, yaml, or csv (default: json)

Default Organization and Project

You can set a default organization and/or project to avoid specifying them with each command. This is useful if you're always working with a specific org or org/project combination.

# Set default organization
loa config set --org my-org

# Set both default organization and project
loa config set --org my-org --project my-project

Once set, you can omit the --org and --project flags from commands. For example:

# Without defaults
loa assets list --org my-org --project my-project

# With defaults set
loa assets list

To clear defaults, use loa config clear --org or loa config clear --project.

Environment Variables

  • LOA_HOST - Override the API host
  • LOA_TOKEN - Provide an API token for authentication

Requirements

  • Node.js >= 23.0.0

License

MIT