--- title: 'Add to the addon catalog' --- Storybook addons are listed in the [catalog](https://storybook.js.org/addons/) and distributed via npm. The catalog is populated by querying npm's registry for Storybook-specific metadata in `package.json`. Add your addon to the catalog by publishing a npm package that follows these requirements: - `package.json` with [module information](./writing-addons.md#get-started) and [addon metadata](#addon-metadata) - `README.md` file with installation and configuration instructions - `/dist` directory containing transpiled ES5 code - `preset.js` file written as an ES5 module at the root level
storybook-addons
as the first keyword, followed by your addon's category. Additional keywords will be used in search and as tags.
| Property | Description | Example |
| ------------- | -------------------------------------- | ------------------------------------------------------------------------- |
| `name` | Addon package name | storybook-addon-outline |
| `description` | Addon description | Outline all elements with CSS to help with layout placement and alignment |
| `author` | Name of the author | winkerVSbecks |
| `keywords` | List of keywords to describe the addon | `["storybook-addons","style","debug"]` |
| `repository` | Addon repository | `{"type": "git","url": "https://github.com/someone/my-addon" }` |
Customize your addon's appearance by adding the `storybook` property with the following fields.
| Property | Description | Example |
| ----------------------- | --------------------------------------------------------- | ------------------------------------- |
| `displayName` | Display name | Outline |
| `icon` | Link to custom icon for the addon (SVG are not supported) | https://yoursite.com/outline-icon.png |
| `unsupportedFrameworks` | List of unsupported frameworks | `["vue"]` |
| `supportedFrameworks` | List of supported frameworks | `["react", "angular"]` |
Use the list below as a reference when filling in the values for both the `supportedFrameworks` and `unsupportedFrameworks` fields.
- react
- vue
- angular
- web-components
- ember
- html
- svelte
- preact
- aurelia
- marionette
- react-native