{
  "name": "@storyteller-platform/align",
  "version": "0.1.52",
  "description": "A library and CLI for automatically aligning audiobooks and EPUBs to produce Media Overlays",
  "author": "Shane Friedman",
  "license": "MIT",
  "keywords": [
    "epub",
    "ebook",
    "speech-to-text",
    "audiobook"
  ],
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/storyteller-platform/storyteller"
  },
  "bugs": {
    "url": "https://gitlab.com/storyteller-platform/storyteller"
  },
  "engines": {
    "node": ">=24"
  },
  "os": [
    "win32",
    "darwin",
    "linux"
  ],
  "type": "module",
  "files": [
    "dist",
    "prebuilds",
    "binding.gyp",
    "README.md",
    "LICENSE.txt"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./readium": {
      "import": {
        "types": "./dist/readium.d.ts",
        "default": "./dist/readium.js"
      },
      "require": {
        "types": "./dist/readium.d.cts",
        "default": "./dist/readium.cjs"
      }
    }
  },
  "scripts": {
    "compile": "NODE_OPTIONS=--experimental-import-meta-resolve ./scripts/bundle.js && node --build-sea sea-config.json",
    "build": "tsup",
    "install": "node-gyp-build",
    "prepack": "yarn build",
    "test": "yarn tsx --test"
  },
  "bin": "./dist/cli/bin.js",
  "dependencies": {
    "@echogarden/icu-segmentation-wasm": "^0.2.2",
    "@echogarden/text-segmentation": "^0.4.1",
    "@esfx/async-semaphore": "^1.0.0",
    "@optique/core": "^0.10.7",
    "@optique/run": "^0.10.7",
    "@readium/shared": "^2.2.0",
    "@storyteller-platform/audiobook": "^0.4.2",
    "@storyteller-platform/epub": "^0.6.3",
    "@storyteller-platform/ghost-story": "^0.1.11",
    "@storyteller-platform/transliteration": "^3.1.3",
    "chalk": "^5.4.1",
    "change-case": "^5.4.4",
    "cli-progress": "^3.12.0",
    "esbuild": "^0.27.3",
    "fastest-levenshtein": "^1.0.16",
    "itertools": "^2.6.0",
    "kuromoji": "0.1.2",
    "locale-currency": "^1.0.0",
    "memoize": "^10.2.0",
    "node-gyp-build": "^4.8.4",
    "pino": "^10.3.1",
    "pino-pretty": "^13.1.3",
    "runes2": "^1.1.4",
    "smil-clockvalue": "^0.0.1",
    "to-words": "^5.3.0",
    "yazl": "^3.3.1",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@storyteller-platform/eslint": "0.1.0",
    "@storyteller-platform/tsup": "0.1.0",
    "@tsconfig/strictest": "^2.0.5",
    "@types/cli-progress": "^3",
    "@types/node": "^24.0.0",
    "@types/yazl": "^3",
    "eslint": "^8.0.0",
    "node-addon-api": "^8.3.1",
    "node-gyp": "^11.2.0",
    "prebuildify": "^6.0.1",
    "tsup": "^8.5.0",
    "tsx": "^4.19.2",
    "typescript": "~5.8.3"
  },
  "publishConfig": {
    "access": "public",
    "exports": {
      ".": {
        "import": {
          "types": "./dist/index.d.ts",
          "default": "./dist/index.js"
        },
        "require": {
          "types": "./dist/index.d.cts",
          "default": "./dist/index.cjs"
        }
      },
      "./readium": {
        "import": {
          "types": "./dist/readium.d.ts",
          "default": "./dist/readium.js"
        },
        "require": {
          "types": "./dist/readium.d.cts",
          "default": "./dist/readium.cjs"
        }
      }
    }
  }
}