{
  "name": "@gruhn/regex-utils",
  "description": "TypeScript library for regex equivalence, intersection, complement and other utilities that go beyond string matching.",
  "author": "Niklas Gruhn",
  "license": "MIT",
  "repository": "github:gruhn/regex-utils",
  "version": "2.11.0",
  "type": "module",
  "scripts": {
    "test": "node --test --import=tsx",
    "build": "tsc --project tsconfig.build.json && tsc-alias --project tsconfig.build.json",
    "build:docs": "npm run build && typedoc --tsconfig tsconfig.build.json && cp -r dist/ docs/dist/ && cp demos/*.html docs/",
    "bench": "npm run bench:aoc2023-day12 && npm run bench:parser && npm run bench:toStdRegex-output-length",
    "bench:aoc2023-day12": "tsx benchmark/aoc2023-day12.ts",
    "bench:parser": "tsx benchmark/parser-bench.ts",
    "bench:toStdRegex-output-length": "tsx benchmark/toStdRegex_output_length.ts",
    "serve": "http-server docs -p 8080",
    "profile": "0x --output-dir prof"
  },
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "0x": "^4.1.4",
    "fast-check": "^3.23.2",
    "http-server": "^14.1.1",
    "semantic-release": "^25.0.3",
    "ts-node": "^10.9.2",
    "tsc-alias": "^1.8.15",
    "tsx": "^4.20.3",
    "typedoc": "^0.28.4",
    "typescript": "^5.8.3"
  }
}
