{
  "name": "ts-levenshtein",
  "version": "1.0.7",
  "description": "Efficient implementation of Levenshtein algorithm  with locale-specific collator support.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "unpkg": "dist/index.global.js",
  "jsdelivr": "dist/index.global.js",
  "cdn": "dist/index.global.js",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "unbuild",
    "prepack": "npm run build",
    "benchmark": "npm run build && tsx benchmark/run.ts",
    "test": "npm run build && node --test --import tsx test/tests.ts",
    "release": "release-it"
  },
  "devDependencies": {
    "@release-it/conventional-changelog": "^10.0.1",
    "unbuild": "^3.3.1",
    "chai": "~1.5.0",
    "levenshtein": "^1.0.5",
    "levenshtein-component": "^0.0.1",
    "levenshtein-deltas": "^0.1.4",
    "levenshtein-edit-distance": "^3.0.1",
    "lodash": "^4.0.1",
    "natural": "^8.1.0",
    "release-it": "^19.0.4",
    "tsx": "^4.19.1",
    "typescript": "^5.5.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ChasLui/ts-levenshtein.git"
  },
  "keywords": [
    "levenshtein",
    "distance",
    "string"
  ],
  "author": "ChasLui <chaslui@outlook.com>",
  "license": "MIT",
  "release-it": {
    "git": {
      "tagName": "v${version}",
      "commitMessage": "chore(release): v${version}",
      "requireCleanWorkingDir": true,
      "requireBranch": [
        "main",
        "master"
      ]
    },
    "npm": {
      "publish": true,
      "access": "public",
      "tag": "latest"
    },
    "github": {
      "release": true,
      "releaseName": "v${version}",
      "autoGenerate": false
    },
    "hooks": {
      "before:init": [
        "npm ci --no-audit --no-fund",
        "npm run build",
        "npm test --silent"
      ],
      "after:release": "echo Successfully released ${name} v${version}."
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "conventionalcommits",
        "infile": "CHANGELOG.md"
      }
    }
  }
}
