-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 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
43
{
"name": "react-outside-click-detector",
"version": "1.0.0",
"description": "NPM Pkg to detect if the click happended outside of a component",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagunji/react-outside-click-detector.git"
},
"keywords": [
"react",
"outside",
"click",
"detector"
],
"author": "Sagun Karanjit",
"license": "MIT",
"bugs": {
"url": "https://github.com/sagunji/react-outside-click-detector/issues"
},
"homepage": "https://github.com/sagunji/react-outside-click-detector#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/react": "^18.0.15",
"react": "^18.2.0",
"rollup": "^2.77.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}