npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ibrahim-org/vue-3d-ai-assistant

v1.1.0

Published

A reusable Vue + TresJS 3D AI voice assistant sphere with iridescent glass shader, blinking eyes, sparkle particles, and radar ripple rings.

Readme

vue-3d-ai-assistant · Live Demo

license

A reusable Vue 3 + TresJS component that renders an interactive 3D AI voice assistant sphere with an iridescent shader, blinking eyes, fire-ember sparkles, and blink-triggered radar ripple rings.

Installation

npm install @ibrahim-org/vue-3d-ai-assistant

Peer dependencies

npm install vue three @tresjs/core

Usage

<script setup>
import { AIVoiceAssistant } from '@ibrahim-org/vue-3d-ai-assistant';
</script>

<template>
  <AIVoiceAssistant style="width: 100vw; height: 100vh;" />
</template>

The component owns its own <TresCanvas>; just give the parent/root element width and height.

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | scale | number | 1 | Scale multiplier for the sphere | | colorPalette | string[] | ['#00e5ff', '#ff00ff', '#ff2200', '#4400aa'] | Array of 4 hex colors for shader uniforms | | animationSpeed | number | 1 | Multiplier for animations (shader flow, bobbing, ripple pacing) | | enableMouseTracking | boolean | true | Sphere rotates toward pointer movement |

Style and class pass-through

Use normal Vue attributes on the component root:

<AIVoiceAssistant class="hero-assistant" style="width: 600px; height: 600px;" />

Use only the sphere in your own TresCanvas

<script setup>
import { TresCanvas } from '@tresjs/core';
import { IridescentSphere } from '@ibrahim-org/vue-3d-ai-assistant';
</script>

<template>
  <TresCanvas :dpr="[1, 2]" clear-color="#0a0a0a">
    <TresPerspectiveCamera :position="[0, 0, 4]" :fov="45" />
    <TresAmbientLight :intensity="0.4" />
    <IridescentSphere :scale="1.2" :animation-speed="1" :enable-mouse-tracking="true" />
  </TresCanvas>
</template>

Development

npm install --no-audit --no-fund
npm run dev

Build and checks

npm run lint
npm run build
npm run build:lib

Publish checklist (GitHub + npm)

  1. Create a new GitHub repo named vue-3d-ai-assistant.
  2. Set remote URL and push:
git init
git add .
git commit -m "feat: initial vue package"
git branch -M main
git remote add origin https://github.com/Ibrahim-dvp/vue-3d-ai-assistant.git
git push -u origin main
  1. Verify package content:
npm pack
  1. Publish scoped package:
npm publish --access public

License

MIT