-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.03 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
72
73
74
75
76
77
78
79
80
{
"name": "@omriattiya/react-cursor",
"version": "0.5.0",
"description": "A unified API for native CSS cursors and custom-rendered cursors in React",
"license": "MIT",
"author": "Omri Attiya",
"repository": {
"type": "git",
"url": "git+https://github.com/omriattiya/react-cursor.git"
},
"homepage": "https://react-cursor-xi.vercel.app/",
"bugs": {
"url": "https://github.com/omriattiya/react-cursor/issues"
},
"type": "module",
"packageManager": "pnpm@12.3.4",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"playground": "vite playground",
"build:playground": "vite build playground",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"keywords": [
"react",
"cursor",
"custom-cursor",
"mouse",
"pointer"
],
"devDependencies": {
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-slider": "^1.4.3",
"@radix-ui/react-switch": "^1.3.3",
"@radix-ui/react-toggle-group": "^1.1.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"clsx": "^2.1.1",
"jsdom": "^29.1.1",
"lucide-react": "^1.24.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.7",
"react-doctor": "^0.7.4",
"react-dom": "^19.2.7",
"react-router": "^8.3.0",
"tsdown": "^0.22.4",
"typescript": "^6.0.3",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}