12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "name": "react-hotkeys-hook",
- "version": "3.4.7",
- "repository": "https://JohannesKlauss@github.com/JohannesKlauss/react-keymap-hook.git",
- "homepage": "https://johannesklauss.github.io/react-hotkeys-hook/",
- "author": "Johannes Klauss",
- "main": "dist/index.js",
- "typings": "dist/index.d.ts",
- "module": "dist/react-hotkeys-hook.esm.js",
- "files": [
- "dist",
- "src"
- ],
- "keywords": [
- "react",
- "hook",
- "hooks",
- "component",
- "hotkey",
- "shortcut",
- "keyboard",
- "shortcuts",
- "keypress",
- "hotkeys"
- ],
- "license": "MIT",
- "scripts": {
- "start": "tsdx watch",
- "build": "tsdx build",
- "test": "jest",
- "publish": "np"
- },
- "babel": {
- "presets": [
- "@babel/preset-env",
- "@babel/preset-typescript",
- "@babel/preset-react"
- ]
- },
- "jest": {
- "setupFilesAfterEnv": [
- "./setupTests.js"
- ],
- "testPathIgnorePatterns": [
- "pkg",
- ".docz",
- "docs"
- ]
- },
- "prettier": {
- "printWidth": 80,
- "semi": true,
- "singleQuote": true,
- "trailingComma": "es5"
- },
- "dependencies": {
- "hotkeys-js": "3.9.4"
- },
- "devDependencies": {
- "@babel/core": "7.18.9",
- "@babel/plugin-proposal-class-properties": "7.18.6",
- "@babel/preset-env": "7.18.9",
- "@babel/preset-react": "7.18.6",
- "@babel/preset-typescript": "7.18.6",
- "@testing-library/react": "13.3.0",
- "@testing-library/react-hooks": "8.0.1",
- "@testing-library/user-event": "13.5.0",
- "@types/jest": "27.5.2",
- "@types/react": "18.0.15",
- "@types/react-dom": "18.0.6",
- "eslint-plugin-prettier": "4.2.1",
- "jest": "26.6.3",
- "prettier": "2.7.1",
- "react": "18.2.0",
- "react-dom": "18.2.0",
- "react-test-renderer": "18.2.0",
- "tsdx": "0.14.1",
- "tslib": "2.4.0",
- "typescript": "4.7.4"
- },
- "peerDependencies": {
- "react": ">=16.8.1",
- "react-dom": ">=16.8.1"
- }
- }
|