-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 KB
/
package.json
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
42
43
44
45
46
47
{
"name": "@andresaya/edge-tts",
"version": "1.2.4",
"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",
"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"
},
"devDependencies": {
"@types/bun": "latest",
"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.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist"
],
"bin": {
"edge-tts": "./dist/cli/edge-tts.js"
},
"engines": {
"bun": ">=0.5.0"
}
}