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

svelte-magnet-action

v0.0.2

Published

A magnetic effect action for Svelte 5 components

Readme

Svelte Magnet Action

A reusable magnetic action for Svelte 5

  • 🚀 Svelte 5 – Built with runes
  • 🟦 Types – Type definitions included for a superior developer experience
  • High Performance – Singleton event listener for smooth performance
  • 🎮 GPU Accelerated – Animations run via requestAnimationFrame and translate3d
  • 📐 Edge Sensing – Optional calculation based on element boundaries instead of the center point

Installation

npm i -D svelte-magnet-action

Usage

Add the action to any html element in your Svelte application:

<script>
    import { magnet } from 'svelte-magnet-action';
</script>

<button use:magnet>
    Hover near me
</button>

<div use:magnet={{ mode: 'repel', strength: 0.8, edgeMode: true }}>
    I will move away from your cursor
</div>

Using Svelte 5 Attachments

For Svelte 5 projects, you can use the modern {@attach} syntax. This approach is more natively integrated into the Svelte 5 reactivity system.

<script>
    import { attachMagnet } from 'svelte-magnet-action';
    
    let power = $state(0.8);
</script>

<button {@attach attachMagnet({ strength: power, edgeMode: true })}>
	Attachment
</button>

Options

| Property | Type | Default | Description | |:-----------------|:-----------------------|:------------|:---------------------------------------------------------------------------------------------------| | distance | number | 100 | The radius (in pixels) where the mouse triggers the effect. | | strength | number | 0.4 | Intensity of the movement. Higher = further displacement. | | mode | 'attract' \| 'repel' | 'attract' | Interaction type. 'attract' pulls toward the mouse, 'repel' pushes away. | | smoothness | number | 0.15 | Interpolation factor (0 to 1). Lower values are smoother/slower, higher values are snappier. | | edgeMode | boolean | false | If true, distance is calculated to the nearest edge. Recommended for wide or large elements. | | minWidth | number | 0 | Minimum viewport width (in pixels), useful for mobile. |

Preview

License

MIT