-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (53 loc) · 1.31 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
{
"name": "use-detect-keyboard-open",
"version": "0.3.0",
"description": "a tiny React hook which allows you to track state of open/close soft keyboard in mobile",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"dev": "webpack-dev-server --env testServer --mode development --open",
"prepublishOnly": "npm run build"
},
"peer Dependencies": {
"react": "^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^7.0.0",
"typescript": "^4.2.2",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0"
},
"keywords": [
"react",
"hooks",
"hook",
"react-hooks",
"keyboard",
"resize",
"soft-keyboard",
"sizes",
"typescript",
"responsive"
],
"author": "straxico",
"repository": {
"type": "git",
"url": "git+https://github.com/straxico/use-detect-keyboard-open.git"
},
"license": "MIT",
"files": [
"build/",
"README.md"
],
"bugs": {
"url": "https://github.com/straxico/use-detect-keyboard-open/issues"
},
"homepage": "https://github.com/straxico/use-detect-keyboard-open#readme"
}