Installations
npm install @lais_ufrn/icons-vue-next
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
21.6.1
NPM Version
10.2.4
Score
59.9
Supply Chain
98.6
Quality
80.6
Maintenance
100
Vulnerability
100
License
Releases
New icons 0.474.0
Published on 23 Jan 2025
New icons 0.473.0
Published on 17 Jan 2025
New icons 0.472.0
Published on 17 Jan 2025
Hotfix Lucide React exports
Published on 13 Jan 2025
Dynamic Icon component Lucide React and new icons 0.471.0
Published on 10 Jan 2025
New icons 0.470.0
Published on 10 Jan 2025
Contributors
Languages
JavaScript (53%)
TypeScript (46.36%)
Svelte (0.6%)
Shell (0.04%)
Developer
Download Statistics
Total Downloads
206
Last Day
2
Last Week
6
Last Month
13
Last Year
206
GitHub Statistics
12,940 Stars
1,957 Commits
596 Forks
39 Watching
33 Branches
204 Contributors
Bundle Size
33.05 kB
Minified
9.41 kB
Minified + Gzipped
Package Meta Information
Latest Version
0.0.2
Package Id
@lais_ufrn/icons-vue-next@0.0.2
Unpacked Size
1.10 MB
Size
147.15 kB
File Count
90
NPM Version
10.2.4
Node Version
21.6.1
Publised On
26 Mar 2024
Total Downloads
Cumulative downloads
Total Downloads
206
Last day
0%
2
Compared to previous day
Last week
0%
6
Compared to previous week
Last month
550%
13
Compared to previous month
Last year
0%
206
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Lucide Vue Next
Implementation of the lucide icon library for Vue 3 applications.
What is LAIS Icons? Read it here.
:warning: This version of lais icons is for Vue 3, For Vue 2 got to @lais_ufrn/icons-vue
Installation
1yarn add @lais_ufrn/icons-vue-next
or
1npm install @lais_ufrn/icons-vue-next
How to use
It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a vue component.
Example
You can pass additional props to adjust the icon.
1<template> 2 <Virus color="red" :size="32" /> 3</template> 4 5<script> 6// Returns Vue component 7import { Virus } from '@lais_ufrn/icons-vue-next'; 8 9export default { 10 name: 'My Component', 11 components: { Virus } 12}; 13</script>
Props
name | type | default |
---|---|---|
size | number | 24 |
color | string | currentColor |
stroke-width | number | 2 |
absolute-stroke-width | boolean | false |
default-class | string | lucide-icon |
Custom props
You can also pass custom props that will be added in the svg as attributes.
1<template> 2 <Virus fill="red" /> 3</template>
One generic icon component
It is possible to create one generic icon component to load icons.
:warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
Icon Component Example
1<template> 2 <component :is="icon" /> 3</template> 4 5<script> 6import * as icons from '@lais_ufrn/icons-vue-next'; 7 8export default { 9 props: { 10 name: { 11 type: String, 12 required: true 13 } 14 }, 15 computed: { 16 icon() { 17 return icons[this.name]; 18 } 19 } 20}; 21</script>
Then you can use it like this
1<template> 2 <div id="app"> 3 <Icon name="Virus" /> 4 </div> 5</template>
No vulnerabilities found.
Reason
30 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: ISC License: LICENSE:0
Reason
no binaries found in the repo
Reason
Found 23/29 approved changesets -- score normalized to 7
Reason
dangerous workflow patterns detected
Details
- Warn: untrusted code checkout 'refs/pull/${{ github.event.pull_request.number }}/merge': .github/workflows/pull-request.yml:88
- Warn: untrusted code checkout 'refs/pull/${{ github.event.pull_request.number }}/merge': .github/workflows/pull-request.yml:18
- Warn: untrusted code checkout 'refs/pull/${{ github.event.pull_request.number }}/merge': .github/workflows/pull-request.yml:38
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
detected GitHub workflow tokens with excessive permissions
Details
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/labeler.yml:8
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/pull-request.yml:16
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/pull-request.yml:36
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/pull-request.yml:75
- Info: jobLevel 'contents' permission set to 'read': .github/workflows/pull-request.yml:84
- Warn: no topLevel permission defined: .github/workflows/ci.yml:1
- Warn: no topLevel permission defined: .github/workflows/close-issue-with-banned-phrases.yml:1
- Warn: no topLevel permission defined: .github/workflows/close-stale-prs.yml:1
- Warn: no topLevel permission defined: .github/workflows/labeler.yml:1
- Warn: no topLevel permission defined: .github/workflows/linting.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-angular.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-font.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-preact.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-react-native.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-react.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-shared.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-solid.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-static.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-svelte.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-vue-next.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide-vue.yml:1
- Warn: no topLevel permission defined: .github/workflows/lucide.yml:1
- Warn: no topLevel permission defined: .github/workflows/pull-request.yml:1
- Warn: no topLevel permission defined: .github/workflows/release.yml:1
- Info: no jobLevel write permissions found
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
Project has not signed or included provenance with any releases.
Details
- Warn: release artifact 0.473.0 not signed: https://api.github.com/repos/lucide-icons/lucide/releases/195358096
- Warn: release artifact 0.472.0 not signed: https://api.github.com/repos/lucide-icons/lucide/releases/195309431
- Warn: release artifact 0.471.0 not signed: https://api.github.com/repos/lucide-icons/lucide/releases/194116246
- Warn: release artifact 0.473.0 does not have provenance: https://api.github.com/repos/lucide-icons/lucide/releases/195358096
- Warn: release artifact 0.472.0 does not have provenance: https://api.github.com/repos/lucide-icons/lucide/releases/195309431
- Warn: release artifact 0.471.0 does not have provenance: https://api.github.com/repos/lucide-icons/lucide/releases/194116246
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/ci.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/ci.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/ci.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:61: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/ci.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/close-issue-with-banned-phrases.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/close-issue-with-banned-phrases.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/close-stale-prs.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/close-stale-prs.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/labeler.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/labeler.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/linting.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/linting.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/linting.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/linting.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/linting.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/linting.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-angular.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-angular.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-font.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-font.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-font.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-font.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-font.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-font.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-font.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-font.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-preact.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-preact.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-preact.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-preact.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-preact.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-preact.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react-native.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react-native.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-react-native.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react-native.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react-native.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react-native.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:34: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-react.yml:35: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-react.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-shared.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-shared.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-shared.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-shared.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-shared.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-shared.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-solid.yml:34: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-solid.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-static.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-static.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-static.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-static.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-static.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-static.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-svelte.yml:34: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-svelte.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue-next.yml:34: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue-next.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide-vue.yml:34: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide-vue.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/lucide.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/lucide.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/lucide.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:77: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:88: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/pull-request.yml:95: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/pull-request.yml:100: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:107: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/pull-request.yml:118: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/pull-request.yml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:38: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/pull-request.yml:44: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/pull-request.yml:47: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/pull-request.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:57: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:58: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:59: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:87: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:88: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:89: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:90: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:118: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:119: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:120: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:135: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:146: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:147: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:154: update your workflow using https://app.stepsecurity.io/secureworkflow/lucide-icons/lucide/release.yml/main?enable=pin
- Warn: npmCommand not pinned by hash: .github/workflows/pull-request.yml:50
- Warn: npmCommand not pinned by hash: .github/workflows/pull-request.yml:110
- Info: 0 out of 62 GitHub-owned GitHubAction dependencies pinned
- Info: 0 out of 31 third-party GitHubAction dependencies pinned
- Info: 0 out of 2 npmCommand dependencies pinned
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 27 are checked with a SAST tool
Reason
29 existing vulnerabilities detected
Details
- Warn: Project is vulnerable to: GHSA-qwcr-r2fm-qrc7
- Warn: Project is vulnerable to: GHSA-pxg6-pf52-xh8x
- Warn: Project is vulnerable to: GHSA-3xgq-45jj-v275
- Warn: Project is vulnerable to: GHSA-qw6h-vgh9-j6wx
- Warn: Project is vulnerable to: GHSA-8gh8-hqwg-xf34
- Warn: Project is vulnerable to: GHSA-c7qv-q95q-8v27
- Warn: Project is vulnerable to: GHSA-2p57-rm9w-gvfp
- Warn: Project is vulnerable to: GHSA-952p-6rrq-rcjv
- Warn: Project is vulnerable to: GHSA-mwcw-c2x4-8c55
- Warn: Project is vulnerable to: GHSA-9wv6-86v2-598j
- Warn: Project is vulnerable to: GHSA-rhx6-c78j-4q9w
- Warn: Project is vulnerable to: GHSA-x565-32qp-m3vf
- Warn: Project is vulnerable to: GHSA-7fh5-64p2-3v2j
- Warn: Project is vulnerable to: GHSA-gcx4-mw62-g8wm
- Warn: Project is vulnerable to: GHSA-c2qf-rxjj-qqgw
- Warn: Project is vulnerable to: GHSA-m6fv-jmcg-4jfg
- Warn: Project is vulnerable to: GHSA-cm22-4g7w-348p
- Warn: Project is vulnerable to: GHSA-c76h-2ccp-4975
- Warn: Project is vulnerable to: GHSA-92r3-m2mg-pj97
- Warn: Project is vulnerable to: GHSA-c24v-8rfc-w8vw
- Warn: Project is vulnerable to: GHSA-8jhw-289h-jh2g
- Warn: Project is vulnerable to: GHSA-4vvj-4cpr-p986 / GHSA-64vr-g452-qvp3
- Warn: Project is vulnerable to: GHSA-9cwx-2883-4wfx
- Warn: Project is vulnerable to: GHSA-vg6x-rcgg-rjx6
- Warn: Project is vulnerable to: GHSA-5j4c-8p2g-v4jx
- Warn: Project is vulnerable to: GHSA-g3ch-rx76-35fx
- Warn: Project is vulnerable to: GHSA-wr3j-pwj9-hqq6
- Warn: Project is vulnerable to: GHSA-3h5v-q93c-6h6q
- Warn: Project is vulnerable to: GHSA-776f-qx25-q3cc
Score
2.8
/10
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreGathering detailed insights and metrics for @lais_ufrn/icons-vue-next