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

@surfmate.team/digital-human-minimax

v0.2.0

Published

MiniMax adapter implementing digital-human-ports' VoiceSynthesisPort (cloud TTS, direct or via a key-holding proxy) and VoiceCloningPort (sample → voiceId). Holds no API key in proxy mode.

Readme

@surfmate.team/digital-human-minimax

MiniMax adapters for the digital-human suite — they implement the ports from @surfmate.team/digital-human-ports:

  • VoiceSynthesisPort — cloud TTS (t2a_v2), via a key-holding proxy (secure) or browser-direct (dev, key exposed).
  • VoiceCloningPort — sample → cloned voiceId (upload → voice_clone → use), plus list / delete.
npm i @surfmate.team/digital-human-minimax

TTS

import { createMinimaxSynthAdapter } from '@surfmate.team/digital-human-minimax'

// Secure: a proxy holds the key server-side and returns mp3 bytes.
const synth = createMinimaxSynthAdapter({ endpoint: import.meta.env.VITE_TTS_PROXY_URL })

const bytes = await synth.synthesize({
  text: '你好',
  voiceId: 'minimax:male-qn-jingying',
  modelId: 'speech-02-hd', // optional
  emotion: 'sad',          // optional
})

// Dev only (key in the browser):
// createMinimaxSynthAdapter({ apiKey, groupId, host })

createMinimaxSynthAdapter(config)

config is one of:

| Mode | Shape | Notes | | --- | --- | --- | | proxy (secure) | { endpoint } | POSTs { text, voiceId, model, emotion }; the proxy adds the key and returns mp3 bytes. The key never reaches the browser. | | direct (dev) | { apiKey, groupId, host? } | Calls MiniMax t2a_v2 from the caller. ⚠️ key ships in the bundle — dev only. host defaults to api.minimax.io. |

Returns a VoiceSynthesisPort: synthesize(input) · playUrl(url) · playBytes(bytes) · stop().

synthesize(input)VoiceSynthesisInput

| Field | Type | Required | Notes | | --- | --- | --- | --- | | text | string | ✅ | What to speak. | | voiceId | string | ✅ | minimax:<id> — a preset (minimax:male-qn-jingying) or a cloned id (minimax:surf…). The minimax: prefix is stripped before the API call. | | modelId | string | — | Only speech-02-hd or speech-02-turbo are honored. Anything else (or omitted) → speech-02-turbo. | | emotion | string | — | Only angry / sad / fearful / disgusted / surprised / neutral are honored. happyneutral (it shifts the timbre); any other / omitted → no emotion sent. |

Returns Promise<ArrayBuffer> (mp3 bytes) — cache them and replay via playBytes.

The modelId / emotion whitelists are deliberate: a stale or foreign value (e.g. a mate-imported expressive model) is coerced instead of 502-ing the call.

Voice cloning (browser-direct, dev)

import { createMinimaxVoiceCloning } from '@surfmate.team/digital-human-minimax'

const cloning = createMinimaxVoiceCloning({ apiKey, groupId })
const { voiceId } = await cloning.cloneFromSample(file)  // 'minimax:surf…'
const mine = await cloning.listClones()                  // hides foreign/malformed ids

from-env helpers: createMinimaxSynth(env) / createMinimaxCloning(env) pick proxy-vs-direct from loose env config.

License

MIT