@lucide/astro 1.0.0-rc.1 → 1.0.0
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/LICENSE +3 -7
- package/README.md +2 -2
- package/package.json +2 -1
- package/src/aliases/aliases.ts +174 -168
- package/src/aliases/prefixed.ts +907 -865
- package/src/aliases/suffixed.ts +1247 -1205
- package/src/icons/cctv-off.ts +18 -0
- package/src/icons/chromium.ts +18 -0
- package/src/icons/codepen.ts +18 -0
- package/src/icons/codesandbox.ts +18 -0
- package/src/icons/dribbble.ts +18 -0
- package/src/icons/facebook.ts +18 -0
- package/src/icons/figma.ts +18 -0
- package/src/icons/framer.ts +18 -0
- package/src/icons/github.ts +18 -0
- package/src/icons/gitlab.ts +18 -0
- package/src/icons/index.ts +196 -177
- package/src/icons/instagram.ts +18 -0
- package/src/icons/linkedin.ts +18 -0
- package/src/icons/pocket.ts +18 -0
- package/src/icons/rail-symbol.ts +18 -0
- package/src/icons/slack.ts +18 -0
- package/src/icons/trello.ts +18 -0
- package/src/icons/twitch.ts +18 -0
- package/src/icons/twitter.ts +18 -0
- package/src/icons/youtube.ts +18 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ISC License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026 Lucide
|
|
3
|
+
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2026 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2026.
|
|
4
4
|
|
|
5
5
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
6
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -16,13 +16,9 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
The
|
|
19
|
+
The MIT License (MIT) (for portions derived from Feather)
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
The MIT License (MIT) (for the icons listed above)
|
|
24
|
-
|
|
25
|
-
Copyright (c) 2013-present Cole Bemis
|
|
21
|
+
Copyright (c) 2013-2026 Cole Bemis
|
|
26
22
|
|
|
27
23
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
28
24
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -21,14 +21,14 @@ Lucide icon library for Astro sites and applications.
|
|
|
21
21
|
·
|
|
22
22
|
<a href="https://lucide.dev/icons/">Icons</a>
|
|
23
23
|
·
|
|
24
|
-
<a href="https://lucide.dev/guide/astro">Documentation</a>
|
|
24
|
+
<a href="https://lucide.dev/guide/packages/lucide-astro">Documentation</a>
|
|
25
25
|
·
|
|
26
26
|
<a href="https://lucide.dev/license">License</a>
|
|
27
27
|
</p>
|
|
28
28
|
|
|
29
29
|
# Lucide Astro
|
|
30
30
|
|
|
31
|
-
Implementation of the
|
|
31
|
+
Implementation of the lucide icon library for Astro applications.
|
|
32
32
|
|
|
33
33
|
## Installation
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"prettier": "^3.4.2",
|
|
48
48
|
"typescript": "^5.8.3",
|
|
49
49
|
"vite": "^6.3.6",
|
|
50
|
+
"vitest": "^4.0.12",
|
|
50
51
|
"astro": "^5.16.0",
|
|
51
52
|
"@lucide/build-icons": "1.1.0"
|
|
52
53
|
},
|