{
  "name": "@typespec/openapi",
  "version": "1.1.0",
  "author": "Microsoft Corporation",
  "description": "TypeSpec library providing OpenAPI concepts",
  "homepage": "https://typespec.io",
  "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"
    }
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "lib/*.tsp",
    "dist/**",
    "!dist/test/**"
  ],
  "peerDependencies": {
    "@typespec/compiler": "^1.1.0",
    "@typespec/http": "^1.1.0"
  },
  "devDependencies": {
    "@types/node": "~22.13.11",
    "@vitest/coverage-v8": "^3.1.2",
    "@vitest/ui": "^3.1.2",
    "c8": "^10.1.3",
    "rimraf": "~6.0.1",
    "typescript": "~5.8.2",
    "vitest": "^3.1.2",
    "@typespec/compiler": "^1.1.0",
    "@typespec/library-linter": "^0.71.0",
    "@typespec/http": "^1.1.0",
    "@typespec/rest": "^0.71.0",
    "@typespec/tspd": "^0.71.0"
  },
  "scripts": {
    "clean": "rimraf ./dist ./temp",
    "build": "pnpm gen-extern-signature && tsc -p . && pnpm lint-typespec-library && pnpm api-extractor",
    "watch": "tsc -p . --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  --output-dir ../../website/src/content/docs/docs/libraries/openapi/reference",
    "api-extractor": "api-extractor run --local --verbose"
  }
}