forked from fonoster/fonoster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 992 Bytes
/
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
{
"name": "@fonos/googletts",
"version": "0.0.47",
"description": "Wrapper for Google TTS",
"author": "Pedro Sanders <[email protected]>",
"homepage": "https://github.com/fonoster/fonos#readme",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json"
},
"directories": {
"src": "src",
"test": "test"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fonoster/fonos.git"
},
"bugs": {
"url": "https://github.com/fonoster/fonos/issues"
},
"dependencies": {
"@fonos/logger": "^0.0.47",
"@fonos/tts": "^0.0.47",
"@google-cloud/text-to-speech": "^3.0.1",
"deepmerge": "^4.2.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"typescript": "^3.9.3"
}
}