{ "name": "msedge-tts", "version": "2.0.5", "description": "An Azure Speech Service module that uses the Microsoft Edge Read Aloud API.", "author": "Migushthe2nd ", "license": "MIT", "repository": "https://github.com/Migushthe2nd/MsEdgeTTS.git", "private": false, "module": "./dist/index", "main": "./dist/index", "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.11.0", "buffer": "^6.0.3", "isomorphic-ws": "^5.0.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/" ], "scripts": { "preinstall": "npx only-allow pnpm", "dev": "pnpm run build && ts-node src/test/test.ts", "build": "tsc", "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" } }