{
  "name": "romanize-string",
  "version": "1.3.1",
  "description": "A fully typed, general-purpose utility for unidirectional string transliteration (non-Latin script => Latin script).",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "sideEffects": false,
  "keywords": [
    "transliteration",
    "romanization",
    "latin",
    "non-latin",
    "multilingual",
    "chinese",
    "mandarin",
    "cantonese",
    "pinyin",
    "arabic",
    "persian",
    "urdu",
    "cyrillic",
    "greek",
    "indic",
    "japanese",
    "korean",
    "thai",
    "text-processing"
  ],
  "author": "Ryan Young",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rejyoung/romanize-string.git",
    "directory": "packages/romanize-string"
  },
  "license": "MIT",
  "type": "module",
  "dependencies": {
    "@indic-transliteration/sanscript": "~1.3.3",
    "arabic-transliterate": "~1.0.1",
    "cantonese-romanisation": "~1.0.7",
    "kuroshiro": "~1.2.0",
    "kuroshiro-analyzer-kuromoji": "~1.1.0",
    "oktjs": "~0.1.3",
    "pinyin-pro": "~3.27.0",
    "tnthai": "~1.0.4"
  },
  "devDependencies": {
    "@types/node": "^22.16.5",
    "npm-run-all2": "^8.0.4",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  },
  "optionalPeerDependencies": {
    "@romanize-string/thai-engine": ">=1.0.0 <2.0.0"
  },
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "build": "pnpm run clean && run-p build:esm build:cjs",
    "clean": "rm -rf dist",
    "build:esm": "tsc --outDir dist/esm --module ESNext",
    "build:cjs": "tsc --outDir dist/cjs --module CommonJS",
    "test": "vitest",
    "start": "pnpm run-s build start:run",
    "start:run": "node dist/esm/index.js"
  }
}