-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "css-follow-cursor",
"description": "Adds CSS variables which follow the cursor position",
"keywords": [
"simple",
"follow",
"cursor",
"mouse",
"pointer",
"css"
],
"version": "1.1.0",
"license": "GPL-3.0-or-later",
"author": {
"name": "Aritz Beobide-Cardinal",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ARitz-Cracker/css-follow-cursor/issues"
},
"homepage": "https://github.com/ARitz-Cracker/css-follow-cursor",
"repository": {
"type": "git",
"url": "git+https://github.com/ARitz-Cracker/css-follow-cursor.git"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rm -rf dist/* && mkdir -p dist && tsc",
"build-standalone": "webpack --mode=development && webpack --mode=production",
"docs": "typedoc src/index.ts"
},
"dependencies": {
"@aritz-cracker/browser-utils": "^1.3.2"
},
"devDependencies": {
"ts-loader": "^9.5.1",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"sideEffects": [
"dist/index.js"
]
}