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

@amazon-devices/kepler-module-manifest-builder

v0.1.13

Published

A helper-tool that will build manifests, for library and application developers.

Readme

KeplerModuleManifestBuilder

Kepler Module Manifest Builder is a standalone NPM package responsible for generating manifests that are used during App Installation to ensure all of the required components are available on the system.

Application and Library developers will also use this package to deliver backward-compatible experiences, which allow developers to build and submit a single App that works for previous and latest Kepler OS.

Installation

To begin, you will want to globally install this package:

npm install -g "@amazon-devices/kepler-module-manifest-builder"

Usage

This script should be run after you have built your package or Application. It is expected that your node_modules/ folder exists prior to running this script.

Building a Manifest

In this example, my-project is the directory of your package or Application. It is required that ./my-project/node_modules/ directory exists in order to run this script.

For Basic manifest generation, without overrides:

kmmb build ./my-project

Parsing package.json of the application to see if kepler.backwardCompatibility overrides are defined:

kmmb build ./my-project -p ./package.json

Parsing package.json and manifest.toml of the application, to see if kepler.backwardCompatibility overrides are defined and warn if privileges are left undefined:

kmmb build ./my-project -p ./package.json -m ./manifest.toml

Query Command

App and Library developers who wish to maintain backward compatibility on existing and future Device OS can use the query command:

kepler-module-manifest-builder query []

  • <libraryName>: The name of the library you want to query.
  • <installedVersion> (optional): The version currently installed in your project (typically found in your package-lock.json).

This command will return a list of backward-compatible versions that can be targeted for backward-compatibility, when installing the given library and version.

Examples:

List all available versions:

kmmb query @amazon-devices/react-native-gesture-handler

Use custom package manager:

kmmb query @amazon-devices/react-native-gesture-handler --pmjs yarn

Query specific version compatibility:

kmmb query @amazon-devices/react-native-gesture-handler -v 2.4.0

# Output:
Backward-compatible versions to  when using @amazon-devices/[email protected]:
*  2.0.0
*  2.1.0
*  2.2.0
*  2.3.0
*  2.4.0

This means that when you install 2.4.0, you have the ability to target devices whose latest version was 2.0.0, 2.1.0, 2.2.0, or 2.3.0.

Note for Application Developers:

Application developers should carefully read the Release Notes to understand what changed between any of the versions listed by this command.

As necessary, you will need to introduce appropriate "Application Sandbox Checks" to ensure that their program works when eitherbackward-compatible or newest versions of the library are found.