-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "smooth-cursor",
"description": "A customizable, physics-based smooth cursor animation component for React applications with spring animations, velocity tracking, and rotation effects",
"version": "0.1.2",
"main": "dist/cjs/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c --bundleConfigAsCjs -w",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepare": "npm run build"
},
"author": "Code-Parth",
"license": "MIT",
"type": "module",
"keywords": [
"react",
"cursor",
"animation",
"smooth-cursor",
"custom-cursor",
"mouse-tracking",
"spring-animation",
"framer-motion",
"physics-based",
"interactive",
"ui-component",
"motion-design",
"mouse-movement",
"cursor-effects",
"react-component",
"typescript",
"velocity-tracking",
"rotation-animation",
"performance-optimized",
"cursor-customization"
],
"repository": {
"type": "git",
"url": "/~https://github.com/Code-Parth/smooth-cursor"
},
"homepage": "/~https://github.com/Code-Parth/smooth-cursor#readme",
"tags": [
"react",
"cursor",
"animation",
"ui",
"component"
],
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^18.0.0 || ^19.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"dependencies": {
"framer-motion": "^12.4.2"
}
}