-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@pijushbarik/use-media-query",
"version": "1.1.2",
"description": "React hook for media query",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"author": "Pijush Barik <pijush.barik8@gmail.com> (https://github.com/pijushbarik)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"esbuild": "^0.14.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-esbuild": "^4.7.2",
"typescript": "^4.5.2"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"react-hook",
"react-custom-hook",
"media-query",
"matchMedia"
],
"bugs": {
"url": "https://github.com/pijushbarik/use-media-query/issues"
},
"homepage": "https://github.com/pijushbarik/use-media-query#readme"
}