-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "use-clipboard-copier",
"version": "1.0.4",
"description": "A react hook which helps you copy text to your clipboard.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"publish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uuvedant4/use-clipboard-copier.git"
},
"keywords": [
"useClipBoardCopier",
"use-clipboard-copier",
"use-copy-to-clipboard",
"use-clipboard-copy",
"react",
"react-hook",
"javascript",
"typescript",
"nextjs"
],
"author": "Vedant Yetekar",
"license": "ISC",
"bugs": {
"url": "https://github.com/uuvedant4/use-clipboard-copier/issues"
},
"homepage": "https://github.com/uuvedant4/use-clipboard-copier#readme",
"devDependencies": {
"@types/react": "^18.2.46",
"typescript": "^5.3.3"
},
"dependencies": {
"react": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"lib/**/*"
]
}