-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
56 lines (56 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
{
"name": "mi-gpt-tts",
"version": "3.1.0",
"type": "module",
"license": "MIT",
"description": "适用于 MiGPT 的 TTS 模块,支持火山引擎、微软必应、OpenAI 等 TTS 服务。",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "pnpm build && pnpm start",
"release": "tsup --config tsup.config.npm.ts && npm publish",
"start": "node --env-file=.env server.js"
},
"dependencies": {
"node-fetch-native": "^1.6.4",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/ws": "^8.5.10",
"tsup": "^8.1.0",
"tsx": "^4.15.5",
"typescript": "^5"
},
"homepage": "https://github.com/idootop/mi-gpt-tts",
"bugs": "https://github.com/idootop/mi-gpt-tts/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/idootop/mi-gpt-tts.git"
},
"keywords": [
"tts",
"stream",
"mi-gpt",
"edge-tts",
"volcano-tts"
],
"author": {
"name": "Del Wang",
"email": "hello@xbox.work",
"url": "https://github.com/idootop"
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
}