-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.54 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.54 KB
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
{
"name": "gradient-cursor",
"description": "A JavaScript library that applies a dynamic and customizable gradient cursor effect to enhance user interaction on web pages.",
"version": "1.0.3",
"license": "MIT",
"homepage": "https://github.com/laura-benavente/gradient-cursor",
"author": "Laura Benavente (https://github.com/laura-benavente)",
"repository": "laura-benavente/gradient-cursor",
"bugs": {
"url": "https://github.com/laura-benavente/gradient-cursor/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"clean": "rmdir dist",
"test": "jest",
"build": "npm run clean && npx tsup"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"dependencies": {
"@types/node": "^22.10.5",
"eslint": "^9.19.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.2"
},
"jest": {
"testEnvironment": "jsdom"
},
"keywords": [
"gradient-cursor",
"cursor",
"gradient",
"css",
"utility",
"javascript",
"style",
"custom",
"effect",
"mouse",
"interactive",
"animation",
"web",
"UI",
"design",
"custom-cursor",
"visual-effect",
"web",
"frontend",
"front"
],
"devDependencies": {
"rollup": "^4.35.0"
}
}