-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "edge-tts-client",
"version": "1.0.2",
"description": "Client-side (web browser) implementation of Edge TTS package — Microsoft Edge Read Aloud API called to generate free text-to-speech",
"keywords": [
"text-to-speech",
"tts",
"edge-tts"
],
"license": "GPL-3.0",
"author": "Travis <contact@travis.engineer>",
"homepage": "https://github.com/travisvn/edge-tts-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/travisvn/edge-tts-client.git"
},
"bugs": {
"url": "https://github.com/travisvn/edge-tts-client/issues"
},
"main": "./dist/index",
"module": "./dist/index",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"jsdom": "^25.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"buffer": "^6.0.3"
},
"files": [
"dist/"
]
}