{
  "name": "sireg",
  "version": "1.0.1",
  "description": "Sitemap-driven website regression testing for CI and releases",
  "author": "Fabian Keller <contact@fabian-keller.de>",
  "homepage": "https://github.com/FaKleiser/sireg",
  "license": "MIT",
  "type": "module",
  "bin": {
    "sireg": "./dist/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=20"
  },
  "files": [
    "dist",
    "assets",
    "docs",
    "README.md",
    "LICENSE",
    "sireg.schema.json",
    "examples"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FaKleiser/sireg.git"
  },
  "keywords": [
    "sitemap",
    "regression-testing",
    "website-testing",
    "redirects",
    "seo",
    "ci",
    "cli"
  ],
  "scripts": {
    "clean": "node -e \"const fs=require('node:fs'); fs.rmSync('dist',{recursive:true,force:true}); fs.rmSync('dist-test',{recursive:true,force:true})\"",
    "build": "npm run clean && tsc -p tsconfig.json",
    "test": "npm run build && tsc -p tsconfig.test.json && node --test \"dist-test/test/**/*.test.js\" \"test/**/*.test.mjs\"",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "release:prepare": "node scripts/prepare-release.mjs",
    "prepack": "npm test"
  },
  "devDependencies": {
    "@types/node": "^22.13.14",
    "typescript": "^5.8.3"
  }
}
