-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.14 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
75
76
{
"name": "react-magic-cursor",
"version": "0.1.8",
"description": "A cursor that follows your mouse and adapt its size shape and color based on the hovered element.",
"author": "Nicolas Sandron <nicolas.sandron@gmail.com>",
"homepage": "https://nicolassandron.com/react-magic-cursor",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"browser": "dist/index.umd.js",
"files": [
"dist/index.js",
"dist/index.es.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"targets": {
"main": false,
"module": false,
"browser": false,
"types": false
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext .ts,.tsx",
"pack": "npm pack --pack-destination ~",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"test": "jest --config --coverage=false",
"test:watch": "jest --config --silent --watch --coverage=false --silent=false"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.47.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vite-tsconfig-paths": "^4.3.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [
"magic cursor",
"react cursor",
"animated cursor",
"motion"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/NicoDos/magic-cursor.git"
},
"bugs": {
"url": "https://github.com/NicoDos/magic-cursor/issues"
}
}