{
  "name": "meshql-http",
  "version": "0.8.3",
  "description": "MeshQL HTTP transport and Express, Fastify, Hono adapters",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./express": {
      "types": "./dist/adapters/express-adapter.d.ts",
      "import": "./dist/adapters/express-adapter.js"
    },
    "./fastify": {
      "types": "./dist/adapters/fastify-adapter.d.ts",
      "import": "./dist/adapters/fastify-adapter.js"
    },
    "./hono": {
      "types": "./dist/adapters/hono-adapter.d.ts",
      "import": "./dist/adapters/hono-adapter.js"
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "check-types": "tsc --noEmit"
  },
  "dependencies": {
    "meshql-core": "^0.11.0",
    "busboy": "^1.6.0"
  },
  "peerDependencies": {
    "express": "^4 || ^5",
    "fastify": "^4 || ^5",
    "hono": "^4"
  },
  "peerDependenciesMeta": {
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "hono": {
      "optional": true
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/meshql/meshql.git",
    "directory": "packages/http"
  },
  "homepage": "https://github.com/meshql/meshql#readme",
  "bugs": {
    "url": "https://github.com/meshql/meshql/issues"
  },
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public"
  }
}
