{
  "name": "gmx-word-counter",
  "version": "1.2.0",
  "license": "MIT",
  "description": "Fast, GMX-V compliant word and character counter. Can count both logographic and non-logographic languages correctly. Also supports generic counting for cases when language is unknown.",
  "author": "Igor Savin <kibertoad@gmail.com>",
  "maintainers": [
    {
      "name": "Igor Savin",
      "email": "kibertoad@gmail.com"
    }
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "devDependencies": {
    "@biomejs/biome": "^2.5.2",
    "@kibertoad/biome-config": "^2.0.0",
    "@types/node": "^26.0.0",
    "@vitest/coverage-v8": "^4.0.1",
    "photofinish": "^1.8.0",
    "typescript": "^6.0.2",
    "vitest": "4.1.9"
  },
  "engines": {
    "node": ">=16"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kibertoad/gmx-word-counter.git"
  },
  "bugs": {
    "url": "https://github.com/kibertoad/gmx-word-counter/issues"
  },
  "keywords": [
    "gmx",
    "gmx-v",
    "word",
    "character",
    "letter",
    "logographic",
    "count",
    "word count",
    "word counting",
    "counting",
    "counter"
  ],
  "homepage": "https://github.com/kibertoad/gmx-word-counter",
  "files": [
    "README.md",
    "LICENSE",
    "dist/*"
  ],
  "scripts": {
    "build": "tsc",
    "benchmark:count-characters": "pnpm build && node benchmark/benchmark-count-characters.js",
    "benchmark:count-words": "pnpm build && node benchmark/benchmark-count-words.js",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "biome check && tsc --noEmit",
    "lint:fix": "biome check --write"
  }
}