-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "use-lifo-click-outside",
"version": "1.0.1",
"description": "Detect clicks outside of elements",
"author": "@faustienf",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README"
],
"homepage": "https://github.com/faustienf/use-lifo-click-outside",
"repository": {
"type": "git",
"url": "git+https://github.com/faustienf/use-lifo-click-outside.git"
},
"license": "MIT",
"keywords": [
"use-lifo-click-outside",
"subscription-stack",
"click-outside",
"clickoutside",
"react-click-outside",
"react-click-away",
"lifo",
"react"
],
"scripts": {
"start": "vite example",
"tsc": "tsc --noEmit true",
"build": "npm run tsc && rm -rf ./dist/* && rollup -c"
},
"dependencies": {
"subscription-stack": "^1.2.2"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"glob": "^8.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}