{
  "name": "highlight-words",
  "version": "1.2.2",
  "description": "Split a piece text into multiple chunks based on a search query, allowing you to highlight the matches.",
  "engines": {
    "node": ">= 16",
    "npm": ">= 8"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/tricinel/highlight-words.git"
  },
  "bugs": {
    "url": "https://github.com/tricinel/highlight-words/issues"
  },
  "homepage": "https://github.com/tricinel/highlight-words#readme",
  "author": "Bogdan Lazar",
  "license": "MIT",
  "keywords": [
    "string",
    "search",
    "highlight",
    "regex"
  ],
  "files": [
    "dist"
  ],
  "eslintIgnore": [
    "node_modules",
    "dist",
    "coverage"
  ],
  "type": "commonjs",
  "typings": "dist/highlight-words.d.ts",
  "main": "dist/highlight-words.js",
  "module": "dist/highlight-words.mjs",
  "exports": {
    ".": {
      "require": "./dist/highlight-words.js",
      "default": "./dist/highlight-words.mjs"
    }
  },
  "devDependencies": {
    "@babel/core": "^7.21.5",
    "@babel/plugin-transform-typescript": "^7.21.3",
    "@babel/preset-env": "^7.21.5",
    "@babel/preset-typescript": "^7.21.5",
    "@stryker-mutator/core": "^6.4.2",
    "@stryker-mutator/jest-runner": "^6.4.2",
    "@types/jest": "^29.5.1",
    "@typescript-eslint/eslint-plugin": "^5.59.1",
    "@typescript-eslint/parser": "^5.59.1",
    "cross-env": "^7.0.3",
    "esbuild": "^0.17.18",
    "eslint": "^8.39.0",
    "eslint-config-frontwerk-typescript": "^1.2.2",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "jest-watch-typeahead": "^2.2.2",
    "lint-staged": "^13.2.2",
    "npm-run-all": "^4.1.5",
    "precise-commits": "^1.0.2",
    "prettier": "^2.8.8",
    "rimraf": "^5.0.0",
    "rollup": "^3.21.2",
    "rollup-plugin-dts": "^5.3.0",
    "rollup-plugin-esbuild": "^5.0.0",
    "typescript": "^5.0.4"
  },
  "scripts": {
    "prebuild": "cross-env rimraf dist",
    "build": "rollup -c",
    "watch": "rollup -cw",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "test": "jest",
    "test:mutations": "stryker run"
  }
}