UNPKG

muppet

Version:

Toolkit for building MCPs on Honojs

95 lines 2.13 kB
{ "name": "muppet", "description": "Toolkit for building MCPs on Honojs", "version": "0.2.2", "license": "MIT", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "keywords": [ "hono", "mcps", "mcp", "standard-schema", "toolkit" ], "homepage": "https://github.com/muppet-dev/muppet", "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/muppet-dev/muppet.git", "directory": "packages/core" }, "bugs": { "url": "https://github.com/muppet-dev/muppet/issues" }, "peerDependencies": { "@hono/standard-validator": "^0.1.2", "@modelcontextprotocol/sdk": "^1.7.0", "@standard-community/standard-json": "^0.1.2", "@standard-schema/spec": "^1.0.0", "hono": "^4.6.13", "openapi-types": "^12.1.3" }, "peerDependenciesMeta": { "@standard-schema/spec": { "optional": true }, "hono": { "optional": true }, "openapi-types": { "optional": true } }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./streaming": { "import": { "types": "./dist/streaming.d.ts", "default": "./dist/streaming.js" }, "require": { "types": "./dist/streaming.d.cts", "default": "./dist/streaming.cjs" } }, "./openapi": { "import": { "types": "./dist/openapi.d.ts", "default": "./dist/openapi.js" }, "require": { "types": "./dist/openapi.d.cts", "default": "./dist/openapi.cjs" } } }, "devDependencies": { "@hono/event-emitter": "^2.0.0", "@types/json-schema": "^7.0.15", "pino": "^9.6.0", "pkgroll": "^2.5.1", "zod": "^3.24.2" }, "scripts": { "dev": "pkgroll --watch", "build": "pkgroll --minify --clean-dist", "test": "vitest" } }