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

@apisuite/extension-ui-types

v1.0.5

Published

This library provides the typings and a base (abstract) implementation of the [APISuite UI Extensions system](https://cloudoki.atlassian.net/wiki/spaces/AS/pages/275054593/UI+Extensions).

Readme

APISuite UI Extension Type Definitions

This library provides the typings and a base (abstract) implementation of the APISuite UI Extensions system.

The goal of this project is to provide static typing support for extension developers so that the APISuite and UI extensions, even though they're separate projects, can have dev-time type hints and an enforceable build-time contract that should also help making sure that a given extension is compatible with the APISuite Portal where it is being used.

The library is rather small and as such we encourage using the code as documentation.

You can also refer to the Example UI Extension that uses these type definitions for a fully-featured but simple extension example.

Using the library

To install this library, run the following adapting the version you want:

npm install --save-dev @apisuite/extension-ui-types

You can then import the type definitions you need in your project:

import { Extension, Hooks, MenuEntry } from "@apisuite/extension-ui-types/v1";

class MyExtension extends Extension {
  // ...
}

Documentation

To learn how to use the library and read the types documentation, refer to the public documentation page: https://cloudoki.github.io/apisuite-extension-ui-types/

Developing the library

Local install

If you're working on the library itself you can install it in other projects locally with the following command:

npm install /local/path/to/apisuite-extension-ui-types/dist

Build

To build the project run:

npm run build

This will create the bundled project in the dist/ folder.

Release a new version

To release a new version use npm's version command.

For instance, to create a patch release, run:

npm version patch

This will build the project, increment the version's patch field, commit these new changes and tag the commit.

Then, to publish the package to the npm registry, run:

npm run dist

Generate documentation

When you build the project (using npm run build), it also generates TypeDoc documentation in the docs/ folder. This allows us to have that documentation served using GitHub Pages.

To publish the updated documentation to GitHub Pages, run

npm run deploy-docs

NPM scripts

  • npm t: Run test suite
  • npm start: Run npm run build in watch mode
  • npm run test:watch: Run test suite in interactive watch mode
  • npm run test:prod: Run linting and generate coverage
  • npm run build: Generate bundles and typings, create docs
  • npm run deploy-docs: Generate docs and push them to the docs branch.
  • npm run lint: Lints code
  • npm run commit: Commit using conventional commit style (husky will tell you to use it if you haven't :wink:)