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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hula-emojis

v1.3.1

Published

The emojis package of Hula

Readme

HuLa-Emojis

NPM Version NPM Last Update npm bundle size npm bundle size

HuLa 表情包数据。

数据概览

| 表情包 | 系列数 | 表情数 | GIF表情数 | 文本表情数 | | :---------- | --: | ---: | -----: | ----: | | 总计 | 34 | 3620 | 324 | 108 | | Bilibili表情包 | 4 | 390 | 0 | 52 | | 小黑盒表情包 | 4 | 135 | 0 | 0 | | 米游社表情包 | 15 | 2882 | 225 | 0 | | 知乎表情包 | 11 | 213 | 99 | 56 |

使用

pnpm i hula-emojis
import HulaEmojis from "hula-emojis";

const emojisBbs = HulaEmojis.MihoyoBbs;

类型声明

详见 hula-emojis.d.ts

单个表情包的数据结构如下:

/**
 * @description 单个表情包类型
 * @since 1.0.0
 * @type HulaEmojiItem
 * @property {string} name 表情包名称
 * @property {string} identifier 表情包标识符
 * @property {string} url 表情包地址
 * @property [string] staticUrl 静态表情包地址
 * @property [number] id 表情包ID
 * @property [number] sortOrder 排序序号
 */
type HulaEmojiItem = {
  name: string;
  identifier: string;
  url: string;
  staticUrl?: string;
  id?: number;
  sortOrder?: number;
};

表情包系列的数据结构如下:

/**
 * @description 表情包系列类型
 * @since 1.0.0
 * @type HulaEmojiSeries
 * @property {string} name 表情包系列名称
 * @property {string} identifier 表情包系列标识符
 * @property {number} num 表情包数量
 * @property {string} cover 表情包封面
 * @property [number] sortOrder 排序序号
 * @property [number] id 系列ID
 * @property {HulaEmojiItem[]} emojis 表情包列表
 */
type HulaEmojiSeries = {
  name: string;
  identifier: string;
  num: number;
  cover: string;
  sortOrder?: number;
  id?: number;
  emojis: HulaEmojiItem[];
};

按平台分类的表情包数据结构如下:

/**
 * @description 表情包元数据类型
 * @since 1.0.0
 * @type HulaEmojiData
 * @property {string} name 平台名称
 * @property {string} version 版本号
 * @property {HulaEmojiType} identifier 平台标识符
 * @property {number} updateTime 更新时间
 * @property {HulaEmojiSeries[]} series 表情包系列列表
 * @return HulaEmojiData
 */
type HulaEmojiData = {
  name: string;
  version: string;
  identifier: HulaEmojiType;
  updateTime: number;
  series: HulaEmojiSeries[];
};

目前来源平台有:

LICENSE

项目遵循 MIT License 开源协议。