{
  "name": "@rushstack/typings-generator",
  "version": "0.17.3",
  "description": "This library provides functionality for automatically generating typings for non-TS files.",
  "keywords": [
    "dts",
    "typings",
    "generate"
  ],
  "main": "./lib-commonjs/index.js",
  "module": "./lib-esm/index.js",
  "types": "./dist/typings-generator.d.ts",
  "exports": {
    ".": {
      "types": "./dist/typings-generator.d.ts",
      "node": "./lib-commonjs/index.js",
      "import": "./lib-esm/index.js",
      "require": "./lib-commonjs/index.js"
    },
    "./lib/*": {
      "types": "./lib-dts/*.d.ts",
      "node": "./lib-commonjs/*.js",
      "import": "./lib-esm/*.js",
      "require": "./lib-commonjs/*.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      "lib/*": [
        "lib-dts/*"
      ]
    }
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/rushstack.git",
    "directory": "libraries/typings-generator"
  },
  "engines": {
    "node": ">=20.9.0"
  },
  "dependencies": {
    "@jridgewell/sourcemap-codec": "~1.5.5",
    "chokidar": "~3.6.0",
    "fast-glob": "~3.3.1",
    "@rushstack/node-core-library": "5.24.0",
    "@rushstack/terminal": "0.24.3"
  },
  "devDependencies": {
    "eslint": "~9.37.0",
    "@rushstack/heft": "1.2.25",
    "local-node-rig": "1.0.0"
  },
  "peerDependencies": {
    "@types/node": "*"
  },
  "peerDependenciesMeta": {
    "@types/node": {
      "optional": true
    }
  },
  "sideEffects": false,
  "scripts": {
    "build": "heft build --clean",
    "_phase:build": "heft run --only build -- --clean",
    "_phase:test": "heft run --only test -- --clean"
  }
}