{
  "name": "@rushstack/trace-import",
  "version": "0.7.28",
  "description": "CLI tool for understanding how require() and \"import\" statements get resolved",
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/rushstack.git",
    "directory": "apps/trace-import"
  },
  "engines": {
    "node": ">=20.9.0"
  },
  "bin": {
    "trace-import": "./bin/trace-import"
  },
  "license": "MIT",
  "dependencies": {
    "resolve": "~1.22.1",
    "semver": "~7.7.4",
    "typescript": "~5.8.2",
    "@rushstack/terminal": "0.24.5",
    "@rushstack/ts-command-line": "5.3.15",
    "@rushstack/node-core-library": "5.24.2"
  },
  "devDependencies": {
    "@types/resolve": "1.20.2",
    "@types/semver": "7.7.1",
    "eslint": "~9.37.0",
    "@rushstack/heft": "1.3.1",
    "local-node-rig": "1.0.0"
  },
  "exports": {
    "./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/*"
      ]
    }
  },
  "sideEffects": [
    "lib-commonjs/start.js",
    "lib-esm/start.js"
  ],
  "scripts": {
    "start": "node lib/start",
    "build": "heft build --clean",
    "_phase:build": "heft run --only build -- --clean",
    "_phase:pack": "rush-pnpm pack",
    "_phase:test": "heft run --only test -- --clean"
  }
}