{
  "name": "@cto.af/linebreak",
  "version": "4.0.3",
  "description": "Unicode line-breaking algorithm from UAX #14",
  "main": "lib/index.js",
  "type": "module",
  "types": "./types/index.d.ts",
  "files": [
    "lib/",
    "types/"
  ],
  "scripts": {
    "clean": "rimraf coverage/ docs/ types/",
    "docs": "typedoc",
    "test": "c8 node --test test/*.test.js",
    "lint": "eslint .",
    "types": "tsc",
    "trie": "node tools/generate_data.js",
    "prebuild": "npm run clean",
    "build": "npm run trie && npm run lint && npm run types && npm run docs && npm run test && npm pack --dry-run"
  },
  "keywords": [
    "unicode",
    "linebreak",
    "tr14",
    "uax14",
    "trie",
    "rules",
    "tailorable"
  ],
  "author": "Joe Hildebrand <joe-github@cursive.net>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cto-af/linebreak.git"
  },
  "license": "MIT",
  "dependencies": {
    "@cto.af/unicode-trie-runtime": "3.2.9"
  },
  "devDependencies": {
    "@cto.af/unicode-trie": "3.2.9",
    "@peggyjs/eslint-config": "6.0.10",
    "@types/node": "25.3.3",
    "eslint": "10.0.2",
    "rimraf": "6.1.3",
    "superc8": "^12.2.4",
    "typedoc": "0.28.17",
    "typescript": "5.9.3"
  },
  "packageManager": "pnpm@10.30.3",
  "engines": {
    "node": ">=20"
  }
}
