{
  "name": "tiny-http-mcp-server",
  "version": "0.1.0",
  "description": "Minimal MCP server over HTTP built on tiny-stdio-mcp-server",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "tiny-http-mcp-server": "dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./server": {
      "types": "./dist/server.d.ts",
      "import": "./dist/server.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js"
    },
    "./test-support": {
      "types": "./dist/test-support.d.ts",
      "import": "./dist/test-support.js"
    }
  },
  "scripts": {
    "build": "node ../../scripts/guard-package-dist.mjs && tsc",
    "prepack": "node ../../scripts/set-bin-executable.mjs && node ../../scripts/manage-bundled-workspace-deps.mjs prepare . mcp-oauth auth-store tiny-mcp-client jose",
    "postpack": "node ../../scripts/manage-bundled-workspace-deps.mjs cleanup . mcp-oauth auth-store tiny-mcp-client jose",
    "prepublishOnly": "tsc"
  },
  "files": [
    "LICENSE",
    "dist"
  ],
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/poe-platform/poe-code.git",
    "directory": "packages/tiny-http-mcp-server"
  },
  "license": "MIT",
  "dependencies": {
    "jose": "^6.1.2",
    "tiny-stdio-mcp-server": "^0.1.0"
  },
  "bundleDependencies": [
    "mcp-oauth",
    "auth-store",
    "tiny-mcp-client",
    "jose"
  ],
  "optionalDependencies": {
    "mcp-oauth": "*",
    "auth-store": "*",
    "tiny-mcp-client": "*"
  },
  "devDependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "@types/express": "^5.0.6",
    "express": "^5.1.0"
  }
}
