forked from heyaapl/firebot-script-google-cloud-tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "google-cloud-tts-revised",
"scriptOutputName": "googleCloudTtsRevised",
"version": "0.3.2",
"description": "Adds Google Cloud Services integration, and a higher-quality TTS effect utilizing it to Firebot",
"main": "",
"scripts": {
"build": "webpack",
"build:dev": "npm run build && npm run copy",
"copy": "node ./scripts/copy-build.js",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix src/ tests/",
"test": "jest"
},
"author": "phroggie",
"contributors": [
"heyappl",
"ebiggz",
"dennisrijsdijk"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@crowbartools/firebot-custom-scripts-types": "^5.63.0",
"@eslint/js": "^9.5.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"eslint": "^8.57.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"typescript": ">= 4.74 <5.5.0",
"typescript-eslint": "^7.13.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^0.21.1",
"semver": "^7.6.2",
"tiny-typed-emitter": "^2.1.0",
"uuid": "^3.3.3"
},
"volta": {
"node": "20.14.0",
"npm": "10.8.1"
}
}