-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-use-arrows",
"version": "1.1.0",
"description": "React hook for traversing DOM elements with keyboard arrows.",
"homepage": "https://dcooney.github.io/react-use-arrows/",
"source": "src/lib/useArrows.tsx",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/lib/useArrows.d.ts",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dcooney/react-use-arrows.git"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"daisyui": "^3.5.1",
"microbundle": "^0.15.1",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"overrides": {
"typescript": "^5.1.6"
},
"scripts": {
"start": "react-scripts start",
"dev": "microbundle watch",
"build": "rm -rf dist && microbundle",
"build:docs": "BUILD_PATH='./docs' react-scripts build"
},
"keywords": [
"arrows",
"arrow keys",
"keyboard arrows",
"arrow controls",
"up arrow",
"down arrow",
"react-hook",
"ref",
"react",
"up",
"down"
],
"author": "Darren Cooney (darren.cooney@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcooney/react-use-arrows/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}