{
  "name": "@flex-development/vfile-location",
  "description": "utility to convert between point (line/column) and offset (range) based locations",
  "version": "1.1.1",
  "keywords": [
    "location",
    "offset",
    "position",
    "range",
    "vfile",
    "vfile-util"
  ],
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/flex-development/vfile-location",
  "repository": "https://github.com/flex-development/vfile-location.git",
  "bugs": "https://github.com/flex-development/vfile-location/issues",
  "author": {
    "name": "Lexus Drumgold",
    "url": "https://github.com/unicornware"
  },
  "publishConfig": {
    "access": "public",
    "diff-dst-prefix": "vfile-location",
    "diff-src-prefix": "vfile-location",
    "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": {
    ".": {
      "vfile-location": "./src/index.mts",
      "default": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "imports": {
    "#fixtures/*": "./__fixtures__/*.mts",
    "#interfaces/*": {
      "vfile-location": "./src/interfaces/*.mts",
      "default": "./dist/interfaces/*.d.mts"
    },
    "#location": {
      "vfile-location": "./src/location.mts",
      "default": "./dist/location.mjs"
    },
    "#tests/*": "./__tests__/*.mts",
    "#types/*": {
      "vfile-location": "./src/types/*.mts",
      "default": "./dist/types/*.d.mts"
    }
  },
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "remarkConfig": {
    "plugins": [
      "@flex-development/remark-preset"
    ]
  },
  "scripts": {
    "build": "yarn clean:build && tsc -p tsconfig.build.json --noEmit false && trash ./dist/{interfaces,types}/*.mjs || exit 0",
    "check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && 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",
    "_postinstall": "[ -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; cross-env NODE_OPTIONS=\"--conditions vfile-location\" 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 NODE_OPTIONS=\"--conditions vfile-location\" vitest --ui",
    "typecheck": "yarn test --typecheck --mode=typecheck",
    "typecheck:ui": "yarn test:ui --typecheck --mode=typecheck"
  },
  "dependencies": {
    "@flex-development/unist-util-types": "1.6.1",
    "@types/unist": "3.0.3",
    "vfile": "6.0.3"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "0.18.2",
    "@commitlint/cli": "20.1.0",
    "@commitlint/types": "20.0.0",
    "@faker-js/faker": "10.0.0",
    "@flex-development/colors": "1.0.2",
    "@flex-development/commitlint-config": "1.0.1",
    "@flex-development/eslint-config": "1.1.1",
    "@flex-development/grease": "3.0.0-alpha.9",
    "@flex-development/log": "5.0.0",
    "@flex-development/pathe": "4.0.2",
    "@flex-development/remark-preset": "1.0.0",
    "@flex-development/tutils": "6.0.0-alpha.25",
    "@tsconfig/strictest": "2.0.6",
    "@types/chai": "5.2.2",
    "@types/is-ci": "3.0.4",
    "@types/node-notifier": "8.0.5",
    "@vates/toggle-scripts": "1.0.0",
    "@vitest/coverage-v8": "3.2.4",
    "@vitest/ui": "3.2.4",
    "chai": "6.2.0",
    "cross-env": "10.1.0",
    "cspell": "9.2.1",
    "devlop": "1.1.0",
    "dprint": "0.50.2",
    "editorconfig": "3.0.1",
    "eslint": "9.37.0",
    "growl": "1.10.5",
    "happy-dom": "19.0.2",
    "husky": "9.1.7",
    "is-ci": "4.1.0",
    "node-notifier": "10.0.1",
    "prettier": "3.6.2",
    "remark": "15.0.1",
    "remark-cli": "12.0.1",
    "sh-syntax": "0.5.8",
    "to-vfile": "8.0.0",
    "trash-cli": "6.0.0",
    "ts-dedent": "2.2.0",
    "typescript": "5.9.3",
    "unified": "11.0.5",
    "vfile": "6.0.3",
    "vitest": "3.2.4"
  },
  "resolutions": {
    "@types/unist": "3.0.3"
  },
  "packageManager": "yarn@4.10.3",
  "sideEffects": false
}