-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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-reactive-nav",
"version": "1.1.1",
"description": "React navbar component that mimics Android-like toolbar scrolling behavior.",
"author": "Franz Joshua Dela Cruz <franzdc.21@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/franz-dc/react-reactive-nav.git"
},
"keywords": [
"react",
"navbar",
"toolbar",
"appbar",
"scroll"
],
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/react": "^18.0.5",
"react": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@rehooks/window-scroll-position": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.8.0 <=18.x",
"react-dom": ">=16.8.0 <=18.x"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}