forked from natelindev/react-use-hoverintent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 992 Bytes
/
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
{
"name": "react-use-hoverintent",
"version": "1.2.7",
"description": "React hook for hoverIntent",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"hover",
"hoverintent",
"delay",
"react",
"hooks"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@types/react": "17.0.38",
"copyfiles": "2.4.1",
"react": "17.0.2",
"rimraf": "3.0.2",
"typescript": "4.6.3"
},
"repository": "https://github.com/natelindev/react-use-hoverintent",
"exclude": [
"node_modules"
],
"scripts": {
"build": "rimraf dist && tsc --emitDeclarationOnly && babel src --out-dir dist --extensions .ts,.tsx && copyfiles package.json LICENSE.md README.md ./dist",
"typecheck": "tsc --noEmit"
}
}