-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "react-breakout",
"version": "1.0.1",
"description": "Lightweight hook for responsive breakpoints in React components",
"author": "noahflk",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"bugs": {
"url": "https://github.com/noahflk/react-breakout/issues"
},
"homepage": "https://github.com/noahflk/react-breakout#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/noahflk/react-breakout.git"
},
"keywords": [
"react",
"hooks",
"responsive",
"breakpoint"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/runtime": "^7.3.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/react": "^17.0.0",
"react": "^17.0.0",
"rollup": "^2.22.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.2.4"
}
}