File size: 936 Bytes
20dbb3c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | {
"name": "node-edge-tts",
"version": "1.2.10",
"description": "node-edge-tts is a module that using Microsoft Edge's online TTS (Text-to-Speech) service on the Node.js",
"keywords": [
"TTS",
"Text-to-Speech",
"Edge"
],
"main": "dist/edge-tts.js",
"types": "dist/edge-tts.d.ts",
"files": [
"/dist",
"bin.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SchneeHertz/node-edge-tts.git"
},
"homepage": "https://github.com/SchneeHertz/node-edge-tts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"author": "SchneeHertz",
"license": "MIT",
"dependencies": {
"https-proxy-agent": "^7.0.1",
"ws": "^8.13.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ws": "^8.5.5",
"@types/yargs": "^17.0.24",
"typescript": "^5.2.2"
},
"bin": {
"node-edge-tts": "bin.js"
}
}
|