Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,4 @@ dist

build/

lib-cjs/
lib-esm/
lib/
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lockfile-version=3
ignore-scripts=true
7 changes: 0 additions & 7 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@

build/
dist/
lib-cjs/
lib-esm/
node_modules/

CHANGELOG.md
30 changes: 12 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
# react-kbs

React library to manage your application's keyboard shortcuts.

<h3 align="center">

<a href="https://www.zakodium.com">
<img src="https://www.zakodium.com/brand/zakodium-logo-white.svg" width="50" alt="Zakodium logo" />
</a>

<p>
Maintained by <a href="https://www.zakodium.com">Zakodium</a>
</p>

[![NPM version][npm-image]][npm-url]
[![build status][ci-image]][ci-url]
[![npm download][download-image]][download-url]

</h3>

# react-kbs

[![NPM version](https://img.shields.io/npm/v/react-kbs.svg)](https://www.npmjs.com/package/react-kbs)
[![npm download](https://img.shields.io/npm/dm/react-kbs.svg)](https://www.npmjs.com/package/react-kbs)
[![license](https://img.shields.io/npm/l/react-kbs.svg)](https://github.com/zakodium-oss/react-kbs/blob/main/LICENSE)

React library to manage your application's keyboard shortcuts.

## Installation

```console
npm i react-kbs
npm install react-kbs
```

## Demo
Expand Down Expand Up @@ -212,9 +209,6 @@ declare module 'react-kbs' {
}
```

[npm-image]: https://img.shields.io/npm/v/react-kbs.svg
[npm-url]: https://npmjs.org/package/react-kbs
[ci-image]: https://github.com/zakodium-oss/react-kbs/workflows/Node.js%20CI/badge.svg?branch=main
[ci-url]: https://github.com/zakodium-oss/react-kbs/actions?query=workflow%3A%22Node.js+CI%22
[download-image]: https://img.shields.io/npm/dm/react-kbs.svg
[download-url]: https://npmjs.org/package/react-kbs
## License

[MIT](./LICENSE)
11 changes: 11 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig, globalIgnores } from 'eslint/config';
import react from 'eslint-config-zakodium/react';
import ts from 'eslint-config-zakodium/ts';
import unicorn from 'eslint-config-zakodium/unicorn';

export default defineConfig(
globalIgnores(['build', 'dist', 'lib', 'lib-esm']),
ts,
react,
unicorn,
);
12 changes: 0 additions & 12 deletions eslint.config.mjs

This file was deleted.

Loading