{
  "name": "gmx-word-counter",
  "version": "1.1.1",
  "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.",
  "maintainers": [
    {
      "name": "Igor Savin",
      "email": "kibertoad@gmail.com"
    }
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "benchmark:count-characters": "npm run build && node benchmark/benchmark-count-characters.js",
    "benchmark:count-words": "npm run build && node benchmark/benchmark-count-words.js",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "biome check && tsc --noEmit",
    "lint:fix": "biome check --write",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {},
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@kibertoad/biome-config": "^1.2.1",
    "@types/node": "^22.10.2",
    "@vitest/coverage-v8": "^2.1.8",
    "photofinish": "^1.8.0",
    "typescript": "^5.7.2",
    "vitest": "2.1.8"
  },
  "engines": {
    "node": ">=16"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/kibertoad/gmx-word-counter.git"
  },
  "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/*"]
}
