-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 940 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
38
39
40
41
42
{
"name": "react-clicks",
"version": "1.1.1",
"description": "A React.js hook enabling easy management of various click types(single, double & long) written in TypeScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Manjodh \"Jodhman\" Singh",
"license": "MIT",
"keywords": [
"react",
"hook",
"click",
"clicks",
"single",
"double",
"long",
"mobile",
"javascript",
"typescript",
"types"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "/~https://github.com/jodhman/react-clicks"
},
"homepage": "/~https://github.com/jodhman/react-clicks/blob/master/README.md",
"scripts": {
"build": "rm -rf lib && tsc",
"publish:lib": "yarn build && npm publish"
},
"devDependencies": {
"@types/react": "^17.0.43",
"typescript": "^4.6.3",
"react": "^18.0.0"
},
"peerDependencies": {
"react": ">=16.12.0"
}
}