-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.8 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@loonylabs/tts-middleware",
"version": "0.12.3",
"description": "Provider-agnostic Text-to-Speech middleware for Azure, OpenAI, ElevenLabs, Google Cloud, Deepgram, Fish Audio, Inworld AI, and Vertex AI TTS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"test:e2e": "jest --testPathPattern=tests/e2e --testPathIgnorePatterns=[]",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test:ci && npm run lint"
},
"keywords": [
"tts",
"text-to-speech",
"azure",
"openai",
"elevenlabs",
"google-cloud",
"deepgram",
"fish-audio",
"vertex-ai",
"middleware",
"provider-agnostic",
"speech-synthesis",
"voice-generation",
"ai-speech"
],
"author": "LoonyLabs Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/loonylabs-dev/tts-middleware.git"
},
"bugs": {
"url": "https://github.com/loonylabs-dev/tts-middleware/issues"
},
"homepage": "https://github.com/loonylabs-dev/tts-middleware#readme",
"peerDependencies": {
"ffmpeg-static": ">=5.0.0"
},
"peerDependenciesMeta": {
"ffmpeg-static": {
"optional": true
}
},
"dependencies": {
"@breezystack/lamejs": "^1.2.7",
"@google-cloud/text-to-speech": "^6.4.0",
"microsoft-cognitiveservices-speech-sdk": "^1.38.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/tests",
"<rootDir>/src"
],
"testMatch": [
"<rootDir>/tests/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/e2e/"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/**/index.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"html",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 84,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}