{
    "name": "edge-tts-node",
    "version": "1.5.7",
    "description": "An Azure Speech Service module that uses the Microsoft Edge Read Aloud API.",
    "author": "Migushthe2nd <Migushthe2nd@users.noreply.github.com>",
    "license": "MIT",
    "repository": "https://github.com/Migushthe2nd/MsEdgeTTS.git",
    "private": false,
    "module": "./dist/index",
    "main": "./dist/index",
    "scripts": {
        "dev": "yarn run build && ts-node src/test/test.ts",
        "build": "tsc",
        "publish": "yarn publish --access=public",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:cov": "jest --coverage",
        "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
        "test:e2e": "jest --config src/test/jest-e2e.json"
    },
    "engines": {
        "node": ">=16.0.0"
    },
    "devDependencies": {
        "@types/jest": "^29.5.12",
        "@types/node": "^20.11.17",
        "@types/ws": "^8.5.10",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.2",
        "ts-node": "^10.9.1",
        "typedoc": "^0.25.8",
        "typescript": "^5.3.3"
    },
    "dependencies": {
        "axios": "^1.5.0",
        "buffer": "^6.0.3",
        "crypto-browserify": "^3.12.0",
        "isomorphic-ws": "^5.0.0",
        "process": "^0.11.10",
        "randombytes": "^2.1.0",
        "stream-browserify": "^3.0.0",
        "ws": "^8.14.1"
    },
    "jest": {
        "moduleFileExtensions": [
            "js",
            "json",
            "ts"
        ],
        "rootDir": "src",
        "testRegex": ".*\\.spec\\.ts$",
        "transform": {
            "^.+\\.(t|j)s$": "ts-jest"
        },
        "collectCoverageFrom": [
            "**/*.(t|j)s"
        ],
        "coverageDirectory": "../coverage",
        "testEnvironment": "node",
        "setupFilesAfterEnv": [],
        "testTimeout": 15000
    },
    "files": [
        "dist/"
    ]
}
