@keybindy/react
Version:
Keybindy for React: Simple, scoped keyboard shortcuts that require little setup. designed to smoothly blend in with your React applications, allowing for robust keybinding functionality without the overhead.
63 lines • 1.5 kB
JSON
{
"name": "@keybindy/react",
"version": "1.1.11",
"description": "Keybindy for React: Simple, scoped keyboard shortcuts that require little setup. designed to smoothly blend in with your React applications, allowing for robust keybinding functionality without the overhead.",
"author": {
"name": "PRASSamin",
"url": "https://github.com/prassamin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keybindyjs/keybindy.git"
},
"homepage": "https://github.com/keybindyjs/keybindy",
"bugs": {
"url": "https://github.com/keybindyjs/keybindy/issues"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"package.json",
"LICENSE.md",
"README.md"
],
"keywords": [
"keyboard",
"shortcut",
"hotkeys",
"keybind",
"keybinding",
"shortcut-manager",
"react",
"shortcut-engine"
],
"devDependencies": {
"@types/react": "^19.1.2",
"tslib": "^2.8.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"react": "^19.1.0",
"@keybindy/core": "1.1.7"
},
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest"
}
}