-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.5 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@simprl/react-hot-keys",
"version": "1.0.11",
"description": "react hook and component for subscribe to hot keys",
"main": "lib/index.js",
"module": "es/index.js",
"types": "dts/index.d.ts",
"files": [
"lib",
"es",
"dts"
],
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"styleguidist": "styleguidist server",
"styleguidist_build": "styleguidist build",
"deploy": "styleguidist build&&gh-pages -d styleguide"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simprl/react-hot-key.git"
},
"keywords": [
"react",
"hook",
"hotkey",
"hotkeys",
"hot",
"key",
"keys",
"path",
"use",
"useHotKey",
"HotKey"
],
"author": "simprl",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/simprl/react-hot-key/issues"
},
"homepage": "https://github.com/simprl/react-hot-key#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@open-wc/building-rollup": "^1.10.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.3.4",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"jest": "^27.0.6",
"react": "^17.0.2",
"react-docgen-typescript": "^2.1.0",
"react-dom": "^17.0.2",
"react-styleguidist": "^11.2.0",
"react-test-renderer": "^17.0.2",
"redux": "^4.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"style-loader": "^3.2.1",
"typescript": "^4.3.4",
"webpack": "^5.52.0"
},
"dependencies": {
"use-constant-handler": "^0.1.6"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
]
}