{
  "name": "punctilio",
  "version": "5.4.4",
  "description": "Smart typography transformations: curly quotes, em-dashes, en-dashes, and more",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "punctilio": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./rehype": {
      "types": "./dist/rehype.d.ts",
      "import": "./dist/rehype.js",
      "default": "./dist/rehype.js"
    },
    "./remark": {
      "types": "./dist/remark.d.ts",
      "import": "./dist/remark.js",
      "default": "./dist/remark.js"
    },
    "./markdown": {
      "types": "./dist/markdown.d.ts",
      "import": "./dist/markdown.js",
      "default": "./dist/markdown.js"
    },
    "./html": {
      "types": "./dist/html.d.ts",
      "import": "./dist/html.js",
      "default": "./dist/html.js"
    },
    "./prettier-plugin": {
      "types": "./dist/prettier-plugin.d.ts",
      "import": "./dist/prettier-plugin.js",
      "default": "./dist/prettier-plugin.js"
    }
  },
  "files": [
    "dist",
    "src",
    "!src/tests",
    "tsconfig.json",
    ".pre-commit-hooks.yaml"
  ],
  "keywords": [
    "typography",
    "smart-quotes",
    "curly-quotes",
    "em-dash",
    "en-dash",
    "typesetting",
    "punctuation",
    "text-formatting",
    "rehype",
    "rehype-plugin",
    "remark",
    "remark-plugin",
    "unified",
    "markdown",
    "html"
  ],
  "author": "Alexander Turner",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AlexanderMattTurner/punctilio.git"
  },
  "bugs": {
    "url": "https://github.com/AlexanderMattTurner/punctilio/issues"
  },
  "homepage": "https://github.com/AlexanderMattTurner/punctilio#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@eslint/js": "9.39.4",
    "@stryker-mutator/core": "9.6.1",
    "@stryker-mutator/jest-runner": "9.6.1",
    "@types/hast": "3.0.4",
    "@types/jest": "29.5.14",
    "@types/mdast": "4.0.4",
    "@types/node": "20.19.30",
    "@types/seedrandom": "3.0.8",
    "eslint": "9.39.2",
    "eslint-plugin-perfectionist": "5.9.0",
    "eslint-plugin-redos": "4.5.0",
    "eslint-plugin-regexp": "3.1.0",
    "fast-check": "4.8.0",
    "hastscript": "9.0.1",
    "jest": "29.7.0",
    "lint-staged": "16.4.0",
    "prettier": "3.8.3",
    "recheck": "4.5.0",
    "rehype-parse": "9.0.1",
    "rehype-stringify": "10.0.1",
    "remark-gfm": "4.0.1",
    "remark-parse": "11.0.0",
    "remark-stringify": "11.0.0",
    "retext": "9.0.0",
    "retext-smartypants": "6.2.0",
    "seedrandom": "3.0.5",
    "smartquotes": "2.3.2",
    "smartypants": "0.2.2",
    "tipograph": "0.7.4",
    "ts-jest": "29.4.11",
    "tsx": "4.22.4",
    "typescript": "5.9.3",
    "typescript-eslint": "8.60.1",
    "typograf": "7.7.0",
    "unified": "11.0.5"
  },
  "peerDependencies": {
    "prettier": "^3.0.0",
    "rehype-parse": "^9.0.0",
    "rehype-stringify": "^10.0.0",
    "remark-gfm": "^4.0.0",
    "remark-parse": "^11.0.0",
    "remark-stringify": "^11.0.0",
    "unified": "^11.0.0"
  },
  "peerDependenciesMeta": {
    "prettier": {
      "optional": true
    },
    "unified": {
      "optional": true
    },
    "rehype-parse": {
      "optional": true
    },
    "rehype-stringify": {
      "optional": true
    },
    "remark-gfm": {
      "optional": true
    },
    "remark-parse": {
      "optional": true
    },
    "remark-stringify": {
      "optional": true
    }
  },
  "dependencies": {
    "cosmiconfig": "9.0.1",
    "ignore": "7.0.5",
    "quick-lru": "7.3.0",
    "tinyglobby": "0.2.16",
    "unist-util-visit-parents": "6.0.2"
  },
  "lint-staged": {
    "*.{ts,js,mjs}": "eslint --fix"
  },
  "scripts": {
    "build": "tsc",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:scripts": "node --test scripts/*.test.mjs",
    "lint": "eslint src scripts",
    "typecheck:scripts": "tsc --noEmit -p tsconfig.scripts.json",
    "benchmark": "pnpm run build && node benchmark.mjs",
    "mutation": "STRYKER_RUN=1 stryker run",
    "mutation:changed": "node scripts/mutate-changed.mjs"
  }
}