UNPKG

mi-gpt-tts

Version:

适用于 MiGPT 的 TTS 模块,支持火山引擎、微软必应、OpenAI 等 TTS 服务。

57 lines (56 loc) 1.33 kB
{ "name": "mi-gpt-tts", "version": "2.0.0", "type": "module", "license": "MIT", "description": "适用于 MiGPT 的 TTS 模块,支持火山引擎、微软必应、OpenAI 等 TTS 服务。", "engines": { "node": ">=20" }, "scripts": { "build": "tsup", "dev": "pnpm build && pnpm start", "publish": "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" } }