forked from rob2d/use-viewport-sizes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "use-viewport-sizes",
"version": "0.6.1",
"description": "a tiny React hook which allows you to track visible window viewport size in your components w/ an optional debounce or custom memo function for updates for optimal rendering.",
"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"
},
"peerDependencies": {
"react": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
},
"keywords": [
"react",
"hooks",
"hook",
"react-hooks",
"window",
"resize",
"viewport",
"viewport-sizes",
"sizes",
"dimensions",
"typescript",
"responsive"
],
"author": "Robert Concepcion III",
"repository": "github:rob2d/use-viewport-sizes",
"license": "MIT",
"files": [
"build/",
"README.md"
]
}