{
  "name": "load-oxfmt-config",
  "version": "0.8.0",
  "description": "Load oxfmt config files and merge supported .editorconfig options.",
  "keywords": [
    "editorconfig",
    "jsonc-parser",
    "load-config",
    "load-oxfmt-config",
    "load-oxfmtrc",
    "oxfmt",
    "oxfmtrc"
  ],
  "homepage": "https://github.com/ntnyq/load-oxfmt-config#readme",
  "bugs": {
    "url": "https://github.com/ntnyq/load-oxfmt-config/issues"
  },
  "license": "MIT",
  "author": {
    "name": "ntnyq",
    "email": "ntnyq13@gmail.com"
  },
  "repository": "ntnyq/load-oxfmt-config",
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@ntnyq/utils": "^0.13.2",
    "editorconfig": "^3.0.2",
    "ignore": "^7.0.5",
    "jiti": "^2.7.0",
    "jsonc-parser": "^3.3.1",
    "picomatch": "^4.0.4"
  },
  "devDependencies": {
    "@ntnyq/tsconfig": "^3.1.0",
    "@types/node": "^25.7.0",
    "@types/picomatch": "^4.0.3",
    "@typescript/native-preview": "^7.0.0-dev.20260511.1",
    "bumpp": "^11.1.0",
    "husky": "^9.1.7",
    "nano-staged": "^1.0.2",
    "npm-run-all2": "^8.0.4",
    "oxfmt": "^0.49.0",
    "oxlint": "^1.64.0",
    "tsdown": "^0.22.0",
    "vitest": "^4.1.6"
  },
  "peerDependencies": {
    "oxfmt": ">=0.49.0"
  },
  "nano-staged": {
    "*.{js,ts,mjs,tsx}": "oxlint --fix",
    "*": "oxfmt --no-error-on-unmatched-pattern"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "oxlint",
    "release": "run-s release:check release:version",
    "release:check": "run-s format:check lint typecheck test",
    "release:version": "bumpp",
    "test": "vitest",
    "typecheck": "tsgo --noEmit"
  }
}