{
  "name": "muppet-kit",
  "description": "A collection of tools for building MCP servers.",
  "version": "0.1.6",
  "license": "MIT",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "type": "module",
  "bin": "./dist/cli.js",
  "files": [
    "dist"
  ],
  "keywords": [
    "mcp",
    "kit",
    "tools",
    "server",
    "inspector",
    "proxy",
    "tunnel"
  ],
  "homepage": "https://github.com/muppet-dev/kit",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/muppet-dev/kit.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/muppet-dev/kit/issues"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./tunnel": {
      "import": {
        "types": "./dist/tunnel/index.d.ts",
        "default": "./dist/tunnel/index.js"
      },
      "require": {
        "types": "./dist/tunnel/index.d.cts",
        "default": "./dist/tunnel/index.cjs"
      }
    }
  },
  "peerDependencies": {
    "@ngrok/ngrok": "^1.5.1",
    "commander": "^13.1.0",
    "untun": "^0.1.3",
    "@muppet-kit/inspector": "^0.1.21",
    "@muppet-kit/shared": "^0.1.12"
  },
  "devDependencies": {
    "@types/node": "^22.15.17",
    "pkgroll": "^2.12.2"
  },
  "scripts": {
    "build": "node ./scripts/build.js",
    "bundle": "pkgroll --minify"
  }
}