{
  "name": "@typespec/http",
  "version": "1.11.0",
  "author": "Microsoft Corporation",
  "description": "TypeSpec HTTP protocol binding",
  "homepage": "https://github.com/microsoft/typespec",
  "docusaurusWebsite": "https://typespec.io/docs",
  "readme": "https://github.com/microsoft/typespec/blob/main/README.md",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/microsoft/typespec.git"
  },
  "bugs": {
    "url": "https://github.com/microsoft/typespec/issues"
  },
  "keywords": [
    "typespec"
  ],
  "type": "module",
  "main": "dist/src/index.js",
  "tspMain": "lib/main.tsp",
  "exports": {
    ".": {
      "typespec": "./lib/main.tsp",
      "types": "./dist/src/index.d.ts",
      "default": "./dist/src/index.js"
    },
    "./testing": {
      "types": "./dist/src/testing/index.d.ts",
      "default": "./dist/src/testing/index.js"
    },
    "./streams": {
      "typespec": "./lib/streams/main.tsp",
      "types": "./dist/src/streams/index.d.ts",
      "default": "./dist/src/streams/index.js"
    },
    "./experimental": {
      "types": "./dist/src/experimental/index.d.ts",
      "default": "./dist/src/experimental/index.js"
    },
    "./experimental/typekit": {
      "types": "./dist/src/experimental/typekit/index.d.ts",
      "default": "./dist/src/experimental/typekit/index.js"
    },
    "./experimental/merge-patch": {
      "import": "./dist/src/experimental/merge-patch/index.js"
    }
  },
  "imports": {
    "#test/*": "./test/*"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "lib/**/*.tsp",
    "dist/**",
    "!dist/test/**"
  ],
  "peerDependencies": {
    "@typespec/compiler": "^1.11.0",
    "@typespec/streams": "^0.81.0"
  },
  "peerDependenciesMeta": {
    "@typespec/streams": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "~25.5.0",
    "@vitest/coverage-v8": "^4.1.0",
    "@vitest/ui": "^4.1.0",
    "c8": "^11.0.0",
    "rimraf": "~6.1.3",
    "typescript": "~5.9.3",
    "vitest": "^4.1.0",
    "@typespec/compiler": "^1.11.0",
    "@typespec/library-linter": "^0.81.0",
    "@typespec/streams": "^0.81.0",
    "@typespec/tspd": "^0.74.1"
  },
  "scripts": {
    "clean": "rimraf ./dist ./temp",
    "build": "pnpm gen-extern-signature && tsc -p tsconfig.build.json && pnpm lint-typespec-library",
    "api-extractor": "api-extractor run --local --verbose",
    "watch": "tsc -p tsconfig.build.json --watch",
    "gen-extern-signature": "tspd --enable-experimental gen-extern-signature .",
    "lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit",
    "test": "vitest run",
    "test:watch": "vitest -w",
    "test:ui": "vitest --ui",
    "test:ci": "vitest run --coverage --reporter=junit --reporter=default",
    "lint": "eslint . --max-warnings=0",
    "lint:fix": "eslint . --fix",
    "regen-docs": "tspd doc .  --enable-experimental --typekits --llmstxt --output-dir ../../website/src/content/docs/docs/libraries/http/reference"
  }
}