@sefinek/google-tts-api 2.1.10 → 2.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint.config.mjs +2 -2
- package/package.json +9 -9
package/eslint.config.mjs
CHANGED
|
@@ -33,7 +33,7 @@ export default [
|
|
|
33
33
|
'no-shadow': ['error', { allow: ['err', 'resolve', 'reject'] }],
|
|
34
34
|
'no-trailing-spaces': 'warn',
|
|
35
35
|
'no-unreachable': 'warn',
|
|
36
|
-
'no-unused-vars': 'warn',
|
|
36
|
+
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
|
37
37
|
'no-use-before-define': ['error', { functions: false, classes: true }],
|
|
38
38
|
'no-var': 'error',
|
|
39
39
|
'object-curly-spacing': ['warn', 'always'],
|
|
@@ -50,6 +50,6 @@ export default [
|
|
|
50
50
|
'wrap-regex': 'warn',
|
|
51
51
|
'yoda': 'error',
|
|
52
52
|
},
|
|
53
|
-
ignores: ['node_modules', '
|
|
53
|
+
ignores: ['node_modules', '**/*.min.js', '**/*bundle*', 'build/**', 'dist/**', 'services/translations/**'],
|
|
54
54
|
},
|
|
55
55
|
];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sefinek/google-tts-api",
|
|
3
|
-
"version": "2.1.
|
|
4
|
-
"description": "Google TTS (Text-To-Speech) for Node.js
|
|
3
|
+
"version": "2.1.12",
|
|
4
|
+
"description": "Fast Google TTS (Text-To-Speech) for Node.js. For free without any API keys!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloud",
|
|
7
7
|
"google-api-client",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsc -p .",
|
|
37
37
|
"cover": "npm run build && jest --coverage",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
38
|
+
"m": "ncu -u && npm install && npm update",
|
|
39
|
+
"test": "npm run build && jest"
|
|
40
40
|
},
|
|
41
41
|
"jest": {
|
|
42
42
|
"coverageReporters": [
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"testEnvironment": "node"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"axios": "^1.
|
|
50
|
+
"axios": "^1.13.6"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@eslint/js": "^
|
|
54
|
-
"globals": "^
|
|
53
|
+
"@eslint/js": "^10.0.1",
|
|
54
|
+
"globals": "^17.4.0",
|
|
55
55
|
"is-base64": "^1.1.0",
|
|
56
|
-
"jest": "^30.0
|
|
57
|
-
"typescript": "^5.
|
|
56
|
+
"jest": "^30.2.0",
|
|
57
|
+
"typescript": "^5.9.3"
|
|
58
58
|
}
|
|
59
59
|
}
|