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

@inf-monkeys-tech/monkeys

v1.0.56

Published

Monkeys JS SDK

Downloads

8,970

Readme

Monkeys JS SDK

@inf-monkeys-tech/monkeys 是 Monkeys 跨仓 TypeScript 合同、运行时 Schema 与 JSON Schema 的唯一发布源。所有消费者只使用一套 canonical 合同和稳定公开入口,禁止导入包内 src/*

安装

yarn add @inf-monkeys-tech/monkeys@^1.0.4 --registry https://registry.npmjs.org

稳定入口

import type {
  RequestScope,
  WorkflowDefinition,
} from '@inf-monkeys-tech/monkeys/contracts';
import {
  RequestScopeSchema,
  WorkflowDefinitionSchema,
} from '@inf-monkeys-tech/monkeys/schemas';
import { resolveThemeTokens } from '@inf-monkeys-tech/monkeys/runtime';
  • @inf-monkeys-tech/monkeys/contracts:canonical TypeScript 合同。
  • @inf-monkeys-tech/monkeys/schemas:同一合同的 Zod 运行时 Schema 与 schema registry。
  • @inf-monkeys-tech/monkeys/runtime:同时提供浏览器 ESM 与 Node.js CommonJS 入口的运行时编译器。
  • @inf-monkeys-tech/monkeys/json-schema/*:构建时生成的 JSON Schema 2020-12 文件。

当前 canonical 合同覆盖 RequestScope、ExecutionLink、Completion、Artifact/Output、Workflow、Capability、Page/Runtime Descriptor、Tenant Config、Theme Tokens、Ontology、Projection、Lineage、Domain Event 与 Trend/Radar 数据对象。运行时 Schema 严格拒绝未声明字段、错误引用和不满足不变量的数据;SDK 不提供旧合同迁移器、兼容别名或并行版本入口。

发布门禁

yarn typecheck
yarn test
yarn pack:check

yarn test 会重新构建包、生成全部 JSON Schema,并验证公开导出、所有 canonical 合同、严格字段边界和跨字段不变量。