forked from TadejPolajnar/react-use-navigate-list
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "react-use-navigate-list",
"version": "0.1.6",
"description": "Navigate through the list using arrow buttons",
"author": "TadejPolajnar",
"license": "MIT",
"type": "module",
"private": false,
"main": "src/index.ts",
"keywords": [
"react",
"hooks",
"navigation",
"a11y"
],
"scripts": {
"build": "rimraf public && npx rollup --config rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"rimraf": "^3.0.2",
"rollup": "^3.8.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TadejPolajnar/react-use-navigate-list.git"
},
"bugs": {
"url": "https://github.com/TadejPolajnar/react-use-navigate-list/issues"
},
"homepage": "https://github.com/TadejPolajnar/react-use-navigate-list#readme"
}