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

dsh-pi-kit-settings

v0.1.0

Published

dsh-pi-kit aggregated settings card: one 'dsh-pi-kit' card in the plugin configuration section that hosts each member plugin's settings rows.

Readme

dsh-pi-kit-settings

中文 | English

dsh-pi-kit 聚合设置卡:在「设置 → 插件 → 插件配置」中注册一张「dsh-pi-kit」卡片,让各成员插件(自动审核、提示音)的设置集中在一张卡里,而不是各自散落。

用户视角

  • 安装本壳后,全家桶的设置统一收进「dsh-pi-kit」卡片,按成员分行折叠,默认收起
  • 单独安装成员插件(不装本壳)时,成员自带独立兜底卡,设置照常可用——单装/全家装都不会出现重复或缺卡

安装

dsh plugin --profile web add dsh-pi-kit-settings

dsh 自动完成安装与挂载,重启 DSH 生效。

聚合安装(推荐):dsh plugin --profile web add dsh-pi-kit 全家桶,本壳随之一并挂载。

开发者(成员接入)

成员插件的 client 半边把设置行注册进 pi-kit.plugin.item 区域即可:

// 声明区域类型
declare module '@deepseek-ai/dsh-client-ui-slots' {
  interface SlotMap {
    'pi-kit.plugin.item': { kind: 'list'; scope: 'root'; owner: SettingsPluginItemOwnerProps }
  }
}

// 注册设置行(同时保留 settings.plugin.item 兜底卡)
ctx.slots.inject('pi-kit.plugin.item', () => ctx.slots.register(
  { name: 'pi-kit.plugin.item', id: '<member-id>', order: 10 },
  () => <YourSettingsRows />,
))

本包无业务逻辑,只提供卡片壳与子区域声明,不依赖任何成员包。

pnpm -C packages/pi-kit-settings build
pnpm -C packages/pi-kit-settings typecheck

License

MIT