-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "react-hover-graphic",
"version": "0.0.5",
"description": "A React component to effortlessly display a graphic on hover",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.tsx --dts --format cjs,esm --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattrltrent/react-hover-graphic.git"
},
"author": "Matthew Trent",
"license": "MIT",
"homepage": "https://matthewtrent.me",
"keywords": [
"react",
"react-component",
"hover-graphic",
"hover-image",
"graphic-hover-effect",
"tooltip",
"hover-preview",
"image-hover-effect",
"react-hover-effect"
],
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"react": {
"next": {
"useClient": true
}
}
}