-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "react-dot-cursor",
"version": "1.0.0",
"description": "A fully customizable cursor component animated with Motion for React.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx --format esm,cjs --dts",
"build:website": "pnpm --filter website build",
"dev": "pnpm --filter website dev",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"motion",
"cursor",
"custom cursor",
"dot cursor",
"motion cursor",
"animated cursor",
"customizable cursor",
"react custom cursor",
"react cursor"
],
"author": "Guillaume Coussot <guillaume.coussot@gmail.com>",
"license": "MIT",
"homepage": "https://react-dot-cursor.guics.st/",
"repository": {
"type": "git",
"url": "git+https://github.com/GuiEpi/react-dot-cursor.git"
},
"bugs": {
"url": "https://github.com/GuiEpi/react-dot-cursor/issues"
},
"dependencies": {
"motion": "^11.18.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "~5.6.3"
},
"packageManager": "pnpm@9.15.4"
}