@ebolax/animated-icons 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
CSS‑only animated icons for **Lucide**, **Heroicons** and **Iconoir**. Icons are rendered as plain `<i>` tags with utility‑style classes and animated on hover using custom properties – no JavaScript required in production.
|
|
4
4
|
|
|
5
|
+
[Homepage](https://ebolax.github.io/animated-icons/)
|
|
6
|
+
|
|
5
7
|
The `/dist` folder contains everything you need to consume the library in your own project.
|
|
6
8
|
|
|
7
9
|
---
|
|
@@ -99,7 +101,7 @@ Each icon is a combination of the base `aic` class and a library‑specific clas
|
|
|
99
101
|
<i class="aic aic-luc-home"></i>
|
|
100
102
|
```
|
|
101
103
|
|
|
102
|
-
The actual list of available icons depends on the versions of `heroicons`, `iconoir` and `lucide-static`. You can browse them in `dist/
|
|
104
|
+
The actual list of available icons depends on the versions of `heroicons`, `iconoir` and `lucide-static`. You can browse them in `dist/icons.json`.
|
|
103
105
|
|
|
104
106
|
---
|
|
105
107
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebolax/animated-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "CSS-only animated icons for Lucide, Heroicons and Iconoir",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/ebolax/animated-icons.git"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://github.
|
|
9
|
+
"homepage": "https://ebolax.github.io/animated-icons/",
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/ebolax/animated-icons/issues"
|
|
12
12
|
},
|
|
@@ -21,18 +21,16 @@
|
|
|
21
21
|
"aic-icons"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
-
"prepublishOnly": "npm run build",
|
|
25
24
|
"esbuild_bundle": "esbuild dist/animated-icons.css --bundle --outfile=dist/animated-icons.bundle.min.css --minify --loader:.svg=dataurl",
|
|
26
25
|
"esbuild_minify": "esbuild dist/animated-icons.css --outfile=dist/animated-icons.min.css --minify",
|
|
27
|
-
"copy_css": "cpx \"dist/animated-icons.bundle.min.css\"
|
|
26
|
+
"copy_css": "cpx \"dist/animated-icons.bundle.min.css\" docs",
|
|
28
27
|
"build": "node build-css-icons.mjs && npm run esbuild_bundle && npm run esbuild_minify && npm run copy_css",
|
|
29
|
-
"serve": "serve
|
|
28
|
+
"serve": "serve docs",
|
|
30
29
|
"start": "npm run build && npm run serve",
|
|
31
30
|
"nodemon": "nodemon --watch base.css --watch index.ejs --watch build-css-icons.mjs --exec \"npm run build\"",
|
|
32
31
|
"dev": "npm-run-all --parallel nodemon serve",
|
|
33
32
|
"git_update": "git add . && git commit -m 'Update' && git push origin main",
|
|
34
|
-
"npm_update": "npm version patch && npm publish"
|
|
35
|
-
"deploy": "gh-pages -d deploy"
|
|
33
|
+
"npm_update": "npm version patch && npm publish"
|
|
36
34
|
},
|
|
37
35
|
"author": "ebolax",
|
|
38
36
|
"license": "ISC",
|
|
@@ -53,7 +51,6 @@
|
|
|
53
51
|
"ejs": "^5.0.1",
|
|
54
52
|
"esbuild": "^0.27.3",
|
|
55
53
|
"eslint": "^10.0.3",
|
|
56
|
-
"gh-pages": "^6.3.0",
|
|
57
54
|
"globals": "^17.4.0",
|
|
58
55
|
"heroicons": "^2.2.0",
|
|
59
56
|
"iconoir": "^7.11.0",
|