-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "chromatic-blur",
"version": "1.0.0",
"description": "A lightweight, zero-dependency JavaScript plugin for creating stunning chromatic aberration blur effects",
"main": "dist/chromatic-blur.js",
"module": "dist/chromatic-blur.js",
"type": "module",
"exports": {
".": {
"import": "./dist/chromatic-blur.js",
"require": "./dist/chromatic-blur.js"
}
},
"files": [
"dist/chromatic-blur.js",
"dist/chromatic-blur.min.js",
"README.md"
],
"scripts": {
"build": "npm run build:copy && npm run build:minify",
"build:copy": "cp chromatic-blur.js dist/",
"build:minify": "terser chromatic-blur.js -c -m --module -o dist/chromatic-blur.min.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"terser": "^5.36.0"
},
"keywords": [
"chromatic-aberration",
"blur",
"glass-morphism",
"backdrop-filter",
"svg-filter",
"vanilla-js",
"no-dependencies",
"ui-effects",
"css-effects",
"visual-effects"
],
"author": "restyler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/restyler/chromatic-blur.git"
},
"bugs": {
"url": "https://github.com/restyler/chromatic-blur/issues"
},
"homepage": "https://restyler.github.io/chromatic-blur/",
"engines": {
"node": ">=14.0.0"
}
}