-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "mouse-follower",
"version": "1.1.2",
"description": "A powerful javascript library to create amazing and smooth effects for the mouse cursor on your website.",
"license": "MIT",
"source": "./src/index.js",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "microbundle -f esm,cjs,umd --name MouseFollower --compress false --sourcemap false --generateTypes true --watch",
"build": "microbundle -f esm,cjs,umd --name MouseFollower --compress false --sourcemap false --generateTypes true && microbundle -f umd --name MouseFollower -o dist/mouse-follower.min.js --no-pkg-main --generateTypes false && sass src/scss/index.scss dist/mouse-follower.min.css -s compressed",
"lint": "eslint src/* --no-error-on-unmatched-pattern"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cuberto/mouse-follower.git"
},
"bugs": {
"url": "https://github.com/Cuberto/mouse-follower/issues"
},
"homepage": "https://github.com/Cuberto/mouse-follower",
"keywords": [
"cursor",
"mouse",
"pointer",
"follower",
"animation",
"ui",
"library",
"microlibrary",
"magic",
"custom",
"css",
"video",
"image",
"text",
"icon",
"effects",
"gsap"
],
"devDependencies": {
"eslint": "^8.12.0",
"sass": "^1.52.1",
"microbundle": "^0.15.0"
}
}