{
  "name": "@microsoft/typespec-msgraph",
  "version": "1.4.2",
  "author": "Microsoft Corporation",
  "description": "TypeSpec for Microsoft Graph provides a description of the Microsoft Graph APIs. It is used for generating API description languages, client and service code, documentation, and other assets.",
  "homepage": "https://github.com/microsoftgraph/typespec-msgraph",
  "readme": "https://github.com/microsoftgraph/typespec-msgraph/blob/master/README.md",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/microsoftgraph/typespec-msgraph.git"
  },
  "bugs": {
    "url": "https://github.com/microsoftgraph/typespec-msgraph/issues"
  },
  "keywords": [
    "typespec"
  ],
  "type": "module",
  "main": "dist/src/index.js",
  "tspMain": "lib/msgraph.tsp",
  "exports": {
    ".": "./dist/src/index.js",
    "./testing": "./dist/src/testing/index.js"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/src/index.d.ts"
      ],
      "testing": [
        "./dist/src/testing/index.d.ts"
      ]
    }
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "files": [
    "lib/*.tsp",
    "dist/**",
    "!dist/test/**"
  ],
  "dependencies": {
    "@typespec/compiler": "~1.14.0",
    "@typespec/http": "~1.14.0",
    "@xmldom/xmldom": "~0.8.13",
    "prettier": "~3.6.2",
    "react": "~18.3.1",
    "react-dom": "~18.3.1",
    "react-reconciler": "~0.29.2",
    "pluralize": "8.0.0",
    "@alloy-js/core": "^0.24.1",
    "@alloy-js/json": "^0.24.0",
    "@alloy-js/typescript": "^0.24.0",
    "@alloy-js/csharp": "^0.24.0",
    "@alloy-js/python": "^0.5.0",
    "@typespec/emitter-framework": "^0.19.0"
  },
  "devDependencies": {
    "@types/mocha": "~10.0.10",
    "@types/node": "~22.0.0",
    "@types/pluralize": "~0.0.33",
    "@types/react": "~18.3.18",
    "@types/react-reconciler": "~0.28.9",
    "c8": "~10.1.3",
    "eslint": "^9.37.0",
    "mocha": "~11.7.4",
    "rimraf": "~5.0.10",
    "source-map-support": "~0.5.21",
    "tsx": "~4.19.3",
    "typescript": "~5.9.2",
    "xpath": "~0.0.34"
  },
  "scripts": {
    "clean": "rimraf ./dist ./temp",
    "build": "tsc -p . && tsp compile --noEmit lib/msgraph.tsp",
    "watch": "tsc -p . --watch",
    "test": "mocha",
    "buildntest": "tsc -p . && mocha",
    "test-official": "c8 mocha --forbid-only",
    "lint": "eslint . --ext .ts,.tsx --max-warnings=0",
    "lint:fix": "eslint . --fix --ext .ts,.tsx"
  }
}