-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "@devsobrinho/edge-tts",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Daniel Sobrinho",
"license": "MIT",
"description": "Server-side implementation of the Edge TTS package — utilizing the Microsoft Edge Read Aloud API to generate text-to-speech with support for data streaming or Base64 encoding",
"homepage": "https://github.com/devsobrinho/edge-tts#readme",
"repository": {
"type": "git",
"url": "https://github.com/devsobrinho/edge-tts.git"
},
"bugs": {
"type": "git",
"url": "https://github.com/devsobrinho/edge-tts.git/issues"
},
"keywords": [
"typescript",
"speech api",
"edge-tts",
"audio-processing",
"websocket",
"nodejs"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "ts-node tests/index.test.ts"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.83",
"@types/ws": "^8.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}