-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
{
"name": "cloud-text-to-speech",
"description": "Single interface to Google, Microsoft and Amazon Text-To-Speech.",
"version": "1.0.3",
"repository": {
"type": "git",
"url": "git+https://github.com/markokosticdev/cloud_text_to_speech_nodejs.git"
},
"type": "module",
"engines": {
"node": ">= 20.9 < 21"
},
"dependencies": {
"aws4-axios": "^3.3.4",
"axios": "1.6.6",
"axios-retry": "^4.1.0",
"cldr-localenames-full": "^45.0.0",
"country-codes-list": "^1.6.11",
"random-js": "^2.1.0",
"tslib": "~2.6",
"typescript-json-serializer": "^6.0.1",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@types/jest": "~29.5",
"@types/node": "~20",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "~7.6",
"@typescript-eslint/parser": "~7.6",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~28.2",
"jest": "~29.7",
"prettier": "~3.2",
"rimraf": "~5.0",
"ts-api-utils": "~1.3",
"ts-jest": "~29.1",
"typescript": "~5.4"
},
"scripts": {
"run-example": "node build/examples/${npm_config_file}.js",
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"volta": {
"node": "20.12.2"
},
"main": "build/src/main.js",
"types": "build/src/main.d.ts",
"files": [
"build/src/**/*"
],
"license": "BSD 2-Clause License",
"keywords": [
"tts",
"text-to-speech",
"google-cloud",
"azure",
"aws"
]
}