-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1004 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "copy-attribution",
"version": "0.0.2",
"description": "A small React hook that appends attribution text to copied text across the page.",
"repository": {
"type": "git",
"url": "git+https://github.com/Sham1ko/copy-attribution.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"clipboard",
"copy",
"attribution",
"hook"
],
"license": "MIT",
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@types/react": "^19.2.14",
"tsup": "^8.3.5",
"typescript": "~6.0.2"
}
}