{
  "name": "url-slug",
  "version": "5.0.0",
  "type": "module",
  "description": "Slug generator with less than 1 KB and no dependencies, RFC 3986 compliant",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsdown",
    "format": "biome check --no-errors-on-unmatched --write",
    "lint": "npm run lint:tsc && npm run lint:biome",
    "lint:biome": "biome check --no-errors-on-unmatched",
    "lint:tsc": "tsc --noEmit",
    "prepare": "husky && npm run build",
    "preversion": "npm run lint && npm test",
    "postversion": "git push && git push --tags",
    "publint": "publint",
    "test": "jest"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.6",
    "@types/jest": "^30.0.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "lint-staged": "^16.3.2",
    "publint": "^0.3.18",
    "ts-jest": "^29.4.6",
    "tsdown": "^0.21.0"
  },
  "repository": "github:stldo/url-slug",
  "keywords": [
    "slug",
    "slugify",
    "url",
    "urlify",
    "url-safe",
    "rfc 3986",
    "string",
    "seo"
  ],
  "author": "stldo (https://github.com/stldo)",
  "license": "MIT"
}
