{
  "name": "@flex-development/mlly",
  "description": "ESM utilities for modern tooling — spec-compliant, developer-friendly, and fully typed",
  "version": "1.0.0-beta.7",
  "keywords": [
    "bundle",
    "cli",
    "ecmascript",
    "ecmascript-modules",
    "esm",
    "esmodules",
    "exports",
    "import",
    "import.meta.resolve",
    "imports",
    "meta",
    "module",
    "modules",
    "node",
    "nodejs",
    "package-json",
    "resolution",
    "resolve",
    "resolver",
    "tooling",
    "transpile",
    "typescript"
  ],
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/flex-development/mlly",
  "repository": "https://github.com/flex-development/mlly.git",
  "bugs": "https://github.com/flex-development/mlly/issues",
  "author": {
    "name": "Lexus Drumgold",
    "url": "https://github.com/unicornware"
  },
  "publishConfig": {
    "access": "public",
    "diff-dst-prefix": "mlly",
    "diff-src-prefix": "mlly",
    "directory": "./",
    "executableFiles": [],
    "node-options": null,
    "pack-destination": ".",
    "parseable": true,
    "prefer-dedupe": true,
    "provenance": true,
    "tag-version-prefix": ""
  },
  "type": "module",
  "files": [
    "CHANGELOG.md",
    "LICENSE.md",
    "README.md",
    "dist"
  ],
  "exports": {
    ".": {
      "mlly": "./src/index.mts",
      "default": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "imports": {
    "#fixtures/tsconfig*.json": {
      "types": "./__fixtures__/tsconfig.json.d.mts",
      "default": "./__fixtures__/tsconfig*.json"
    },
    "#fixtures/*": "./__fixtures__/*.mts",
    "#interfaces/*": {
      "mlly": "./src/interfaces/*.mts",
      "default": "./dist/interfaces/*.d.mts"
    },
    "#internal/fs": {
      "types": "./src/internal/fs.d.mts",
      "browser": {
        "mlly": "./src/internal/fs.browser.mts",
        "default": "./dist/internal/fs.browser.mjs"
      },
      "node": {
        "mlly": "./src/internal/fs.node.mts",
        "default": "./dist/internal/fs.node.mjs"
      },
      "default": "./dist/internal/fs.node.mjs"
    },
    "#internal/process": {
      "types": {
        "mlly": "./src/internal/process.d.mts",
        "default": "./dist/internal/process.d.mts"
      },
      "browser": {
        "mlly": "./src/internal/process.browser.mts",
        "default": "./dist/internal/process.browser.mjs"
      },
      "node": "process",
      "default": "process"
    },
    "#internal/*": {
      "mlly": "./src/internal/*.mts",
      "default": "./dist/internal/*.mjs"
    },
    "#lib/*": {
      "mlly": "./src/lib/*.mts",
      "default": "./dist/lib/*.mjs"
    },
    "#tests/*": "./__tests__/*.mts",
    "#types/*": {
      "mlly": "./src/types/*.mts",
      "default": "./dist/types/*.d.mts"
    }
  },
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "remarkConfig": {
    "plugins": [
      "@flex-development/remark-preset",
      [
        "remark-lint-maximum-heading-length",
        130
      ]
    ]
  },
  "scripts": {
    "build": "yarn clean:build && tsc -p tsconfig.build.json --noEmit false && yarn bundle:dts && yarn minify:build",
    "bundle:dts": "rollup --config=rollup.config.mts && trash dist/{interfaces,types} && trash dist/{internal,lib}/*.d.mts",
    "check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn check:types && yarn test:cov && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack",
    "check:format": "dprint check --incremental=false",
    "check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
    "check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
    "check:types": "tsc -p tsconfig.json",
    "check:types:attw": "yarn pack && attw package.tgz; yarn clean:pack",
    "check:types:build": "tsc -p tsconfig.build.json",
    "check:upgrades": "yarn upgrade-interactive",
    "clean:build": "trash \"./{dist,*.tgz}\" || exit 0",
    "clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
    "clean:pack": "trash \"./*.tgz\"",
    "clean:test": "trash ./coverage && trash __tests__/reports",
    "codecov": "yarn test:cov && yarn test:cov:upload",
    "codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
    "commitlint": "commitlint -V",
    "fix:cg": "yarn fix:format && yarn fix:lint",
    "fix:dedupe": "yarn dedupe --strategy=highest",
    "fix:format": "dprint fmt",
    "fix:lint": "yarn check:lint --cache --fix",
    "minify:build": "esbuild dist/**/*.mjs --allow-overwrite --minify --keep-names --outdir=dist --format=esm --out-extension:.js=.mjs --log-level=warning",
    "_postinstall": "[ -f ./.git ] && [ -f ./node_modules/.bin/husky ] && chmod +x .husky/_/* && husky || exit 0",
    "postpack": "toggle-scripts +postinstall",
    "postpublish": "toggle-scripts +prepack",
    "prepack": "toggle-scripts -postinstall && yarn build",
    "prepublishOnly": "toggle-scripts -prepack",
    "release": "bash ./scripts/release.sh",
    "remark": "remark .",
    "test": "yarn clean:build; vitest run",
    "test:cov": "yarn test --coverage",
    "test:cov:reports": "yarn test:cov --merge-reports --mode=reports",
    "test:cov:ui": "yarn test:ui --coverage",
    "test:cov:upload": "./codecov -t $CODECOV_TOKEN -f ./coverage/lcov.info",
    "test:reports": "yarn test --merge-reports --mode=reports",
    "test:ui": "cross-env VITEST_UI=1 vitest --ui",
    "typecheck": "yarn test --typecheck --mode=typecheck",
    "typecheck:ui": "yarn test:ui --typecheck --mode=typecheck"
  },
  "dependencies": {
    "@flex-development/errnode": "3.1.1",
    "@flex-development/is-builtin": "3.2.0",
    "@flex-development/pathe": "4.0.2",
    "@flex-development/pkg-types": "4.1.0",
    "@flex-development/when": "1.0.0",
    "devlop": "1.1.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "0.18.2",
    "@commitlint/cli": "20.4.1",
    "@commitlint/types": "20.4.0",
    "@edge-runtime/vm": "5.0.0",
    "@faker-js/faker": "10.3.0",
    "@flex-development/commitlint-config": "1.0.1",
    "@flex-development/eslint-config": "1.1.1",
    "@flex-development/grease": "3.0.0-alpha.9",
    "@flex-development/kronk": "1.0.0-alpha.2",
    "@flex-development/remark-preset": "1.0.0",
    "@flex-development/tsconfig-types": "5.1.0",
    "@flex-development/tutils": "6.0.0-alpha.25",
    "@rollup/plugin-node-resolve": "16.0.3",
    "@tsconfig/strictest": "2.0.8",
    "@types/chai": "5.2.3",
    "@types/chai-string": "1.4.5",
    "@types/concat-stream": "2.0.3",
    "@types/is-ci": "3.0.4",
    "@types/node-notifier": "8.0.5",
    "@types/rollup": "0.54.0",
    "@vates/toggle-scripts": "1.0.0",
    "@vitest/coverage-v8": "4.0.18",
    "@vitest/ui": "4.0.18",
    "chai-each": "0.0.1",
    "chai-string": "1.6.0",
    "concat-stream": "2.0.0",
    "cross-env": "10.1.0",
    "cspell": "9.6.4",
    "dprint": "0.51.1",
    "editorconfig": "3.0.1",
    "esbuild": "0.27.3",
    "eslint": "9.39.2",
    "growl": "1.10.5",
    "husky": "9.1.7",
    "import-meta-resolve": "4.2.0",
    "is-ci": "4.1.0",
    "msw": "2.12.10",
    "node-notifier": "10.0.1",
    "pkg-size": "2.4.0",
    "remark": "15.0.1",
    "remark-cli": "12.0.1",
    "remark-lint-maximum-heading-length": "4.1.1",
    "rollup": "4.57.1",
    "rollup-plugin-dts": "6.3.0",
    "sh-syntax": "0.5.8",
    "trash-cli": "7.2.0",
    "typescript": "5.9.3",
    "unified": "11.0.5",
    "vfile": "6.0.3",
    "vite-tsconfig-paths": "6.1.1",
    "vitest": "4.0.18"
  },
  "resolutions": {
    "remark-lint-maximum-heading-length": "4.1.1"
  },
  "engines": {
    "node": ">=18.20.4"
  },
  "packageManager": "yarn@4.12.0",
  "sideEffects": false
}