{
  "name": "pocket-tts-js",
  "version": "0.1.0",
  "description": "Tiny browser API for the Pocket TTS ONNX model: streaming neural text-to-speech with voice cloning, running entirely client-side in a Web Worker.",
  "type": "module",
  "main": "./src/index.js",
  "module": "./src/index.js",
  "types": "./src/index.d.ts",
  "exports": {
    ".": {
      "types": "./src/index.d.ts",
      "import": "./src/index.js"
    },
    "./worker": "./src/worker.js",
    "./tokenizer": "./src/tokenizer.js",
    "./player": "./src/player.js"
  },
  "files": [
    "src",
    "README.md",  
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "lint": "node --check src/index.js && node --check src/worker.js && node --check src/tokenizer.js && node --check src/binary.js && node --check src/player.js"
  },
  "keywords": [
    "tts",
    "text-to-speech",
    "pocket-tts",
    "onnx",
    "onnxruntime-web",
    "voice-cloning",
    "speech-synthesis",
    "browser",
    "webworker",
    "wasm"
  ],
  "author": "vlapky",
  "license": "MIT",
  "homepage": "https://github.com/vlapky/pocket-tts-js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vlapky/pocket-tts-js.git"
  },
  "engines": {
    "node": ">=18"
  }
}
