forked from JohannesKlauss/react-hotkeys-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.66 KB
/
package.json
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
{
"name": "react-hotkeys-hook",
"version": "1.5.2",
"repository": "https://[email protected]/JohannesKlauss/react-keymap-hook.git",
"author": "Johannes Klauss",
"keywords": [
"react",
"hook",
"hooks",
"component",
"hotkey",
"shortcut",
"keyboard",
"shortcuts",
"keypress",
"hotkeys"
],
"license": "MIT",
"scripts": {
"build": "pika build",
"publish": "pika publish",
"docz:dev": "docz dev",
"docz:build": "docz build",
"version": "npm run build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"dependencies": {
"hotkeys-js": "3.7.1"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@emotion/core": "10.0.16",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.6.0",
"@pika/plugin-build-types": "0.6.0",
"@pika/plugin-build-web": "0.6.0",
"@pika/plugin-ts-standard-pkg": "0.6.0",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"docz": "1.2.0",
"docz-theme-default": "1.2.0",
"emotion-theming": "10.0.14",
"react": "16.9.0",
"react-dom": "16.9.0",
"typescript": "3.5.3"
},
"peerDependencies": {
"react": ">=16.8.1"
},
"resolutions": {
"@types/react": "16.9.2"
}
}