New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@speckle/ui-components-nuxt

Package Overview
Dependencies
Maintainers
2
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@speckle/ui-components-nuxt

Companion Nuxt module for @speckle/ui-components

latest
npmnpm
Version
2.28.0
Version published
Maintainers
2
Created
Source

ui-components-nuxt

Nuxt v3 module that sets up @speckle/ui-components auto-importing like any other components you might have in your ./components folder. You also get properly typed components in your templates if you use Volar.

Setup

  • Make sure you've got @speckle/ui-components installed and set up

  • Install @speckle/ui-components-nuxt and add it to your nuxt modules in nuxt.config.ts

  • Add the following to your build.transpile array in your nuxt config:

// nuxt.config.js
export default {
  build: {
    transpile: [
      '@headlessui/vue',
      /^@heroicons\/vue/,
      '@vueuse/core',
      '@vueuse/shared',
      '@speckle/ui-components',
      'v3-infinite-loading'
    ]
  }
}
  • Add the following to your vite.resolve.dedupe array in your nuxt config:
// nuxt.config.js
export default {
  vite: {
    resolve: {
      dedupe: ['vee-validate']
    }
  }
}

This will ensure that some dependencies are transpiled properly so that they work correctly both during SSR & CSR.

FAQs

Package last updated on 30 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts