muppet
Version:
Toolkit for building MCPs on Honojs
71 lines • 1.57 kB
JSON
{
"name": "muppet",
"description": "Toolkit for building MCPs on Honojs",
"version": "0.3.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": {
"@modelcontextprotocol/sdk": "^1.15.1",
"@standard-community/standard-json": "^0.3.0-rc.1",
"@standard-schema/spec": "^1.0.0",
"file-type": "^20.5.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
},
"@standard-schema/spec": {
"optional": true
},
"file-type": {
"optional": true
}
},
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/node": "^24.0.14",
"@valibot/to-json-schema": "^1.3.0",
"pkgroll": "^2.5.1",
"valibot": "^1.1.0"
},
"scripts": {
"dev": "pkgroll --watch",
"build": "pkgroll --minify --clean-dist",
"test": "vitest"
}
}