{
  "name": "search-text-highlight",
  "version": "3.0.1",
  "description": "This tool allow find a string or substring from a text and highlight it with html wrapper with unicode support.",
  "keywords": [
    "search",
    "text",
    "highlight",
    "highlighter",
    "html-wrapper",
    "unicode-support"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DailyBotHQ/search-text-highlight.git"
  },
  "author": "DailyBot <support@dailybot.com> (https://dailybot.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/DailyBotHQ/search-text-highlight/issues"
  },
  "homepage": "https://github.com/DailyBotHQ/search-text-highlight#readme",
  "dependencies": {},
  "devDependencies": {
    "@biomejs/biome": "2.4.16",
    "@types/node": "25.7.0",
    "esbuild": "0.28.0",
    "nodemon": "3.1.14",
    "npm-check-updates": "22.2.0",
    "tsx": "4.22.4",
    "typescript": "6.0.3",
    "vite": "8.0.16",
    "vitest": "4.1.8"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "biome:check": "biome check",
    "biome:fix": "biome check --write",
    "biome:fix:unsafe": "biome check --write --unsafe",
    "test": "vitest run",
    "test:watch": "vitest",
    "release": "bash .github/scripts/prepare_release.sh",
    "start": "node dist/index.js",
    "dev": "nodemon --exec tsx src/index.ts",
    "build": "vite build && tsc -p tsconfig.build.json --emitDeclarationOnly",
    "build:dev": "vite build --mode development",
    "build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
    "build:tsc": "tsc -p tsconfig.build.json --noEmit",
    "ncu:check": "ncu",
    "ncu:upgrade": "ncu -u"
  }
}