-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 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
{
"name": "react-use-browser-theme",
"version": "1.0.8",
"description": "React Hook dark and light mode theming.",
"author": "Emmanouil Zoumpoulakis <emzoumpo@gmail.com> (https://github.com/emzoumpo)",
"license": "MIT",
"repository": "emzoumpo/react-use-browser-theme",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"volta": {
"node": "18.18.0"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/runtime": "^7.19.0",
"@types/react": "^18.0.21",
"cross-env": "^7.0.3",
"gh-pages": "^4.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-scripts": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.8.4"
},
"packageManager": "yarn@3.6.3"
}