UNPKG

@andresaya/edge-tts

Version:

Edge TTS is a package that allows access to the online text-to-speech service used by Microsoft Edge without the need for Microsoft Edge, Windows, or an API key.

55 lines (54 loc) 1.47 kB
{ "name": "@andresaya/edge-tts", "version": "1.8.0", "description": "Edge TTS is a package that allows access to the online text-to-speech service used by Microsoft Edge without the need for Microsoft Edge, Windows, or an API key.", "main": "dist/index.js", "browser": "dist/browser/edge-tts.esm.js", "unpkg": "dist/browser/edge-tts.umd.min.js", "jsdelivr": "dist/browser/edge-tts.umd.min.js", "keywords": [ "edge", "tts", "text-to-speech", "microsoft", "microsoft edge", "speech-synthesis" ], "author": "Andres Aya", "license": "GPL-3.0-only", "homepage": "https://github.com/andresayac/edge-tts", "bugs": { "url": "https://github.com/andresayac/edge-tts/issues" }, "scripts": { "build": "tsc", "build:bin": "bun scripts/build.ts", "build:browser": "bun scripts/build-browser.ts", "prepublishOnly": "npm run build && npm run build:bin && npm run build:browser" }, "devDependencies": { "@types/bun": "latest", "@types/ws": "^8.18.1", "esbuild": "^0.25.12", "typescript": "^5.6.2" }, "dependencies": { "@types/uuid": "^10.0.0", "commander": "^12.1.0", "events": "^3.3.0", "fs": "^0.0.1-security", "ws": "^8.18.3" }, "peerDependencies": { "typescript": "^5.0.0" }, "files": [ "dist" ], "bin": { "edge-tts": "dist/cli/edge-tts.js" }, "engines": { "bun": ">=0.5.0" } }