{
  "name": "react-edge-tts",
  "version": "1.0.3",
  "description": "Generate text-to-speech narration for React content using Microsoft Edge TTS",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "bin": {
    "react-edge-tts": "./dist/cli.js"
  },
  "files": [
    "dist",
    "!dist/**/*.test.*",
    "!dist/**/__tests__"
  ],
  "keywords": [
    "react",
    "text-to-speech",
    "tts",
    "edge-tts",
    "narration"
  ],
  "author": "Travis Van Nimwegen <npm@travis.engineer> (https://travis.engineer)",
  "license": "GPL-3.0",
  "homepage": "https://github.com/travisvn/react-edge-tts#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/travisvn/react-edge-tts.git"
  },
  "bugs": {
    "url": "https://github.com/travisvn/react-edge-tts/issues"
  },
  "dependencies": {
    "@babel/helper-plugin-utils": "^7.26.5",
    "@babel/parser": "^7.23.0",
    "@babel/traverse": "^7.23.0",
    "@babel/types": "^7.23.0",
    "commander": "^11.1.0",
    "lucide-react": "^0.309.0",
    "microsoft-cognitiveservices-speech-sdk": "^1.34.0",
    "node-edge-tts": "^1.2.7",
    "react": ">=16.8.0",
    "string-replace-loader": "^3.1.0"
  },
  "devDependencies": {
    "@babel/core": "^7.23.0",
    "@testing-library/jest-dom": "^6.1.5",
    "@testing-library/react": "^14.1.2",
    "@types/babel__core": "^7.20.5",
    "@types/babel__helper-plugin-utils": "^7.10.3",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.11.0",
    "@types/react": "^18.2.0",
    "@types/testing-library__jest-dom": "^5.14.9",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "next": "^14.2.23",
    "react": "^18.2.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.0"
  },
  "peerDependencies": {
    "next": ">=13.0.0",
    "react": ">=16.8.0"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc && npm run copy-css",
    "prepare": "npm run build",
    "clean": "rimraf dist",
    "prebuild": "npm run clean",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "copy-css": "mkdir -p dist/styles && cp src/styles/*.css dist/styles/"
  }
}