-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 765 Bytes
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
{
"name": "react-hook-mouse",
"version": "1.0.2",
"description": "React hook for mouse position, movement and buttion states",
"keywords": [
"react",
"hook",
"mouse"
],
"repository": "git@github.com:bence-toth/react-hook-mouse.git",
"license": "LGPL",
"author": "Bence A. Toth <tothab@gmail.com>",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist",
"build:watch": "babel src --out-dir dist --watch"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"react": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
}
}