-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "react-use-hoverintent",
"version": "1.3.0",
"description": "React hook for hoverIntent",
"keywords": [
"hover",
"hoverintent",
"delay",
"react",
"hooks",
"jquery"
],
"repository": "https://github.com/natelindev/react-use-hoverintent",
"license": "MIT",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn -s clean && rollup -c rollup.config.mjs && rimraf ./dist/ts",
"clean": "rimraf dist*",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/react": "18.2.79",
"react": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.14.3",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.13.0",
"rollup-plugin-terser": "7.0.2",
"tslib": "^2.6.2",
"typescript": "5.4.5"
},
"exclude": [
"node_modules"
]
}