-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "google-home-notifier",
"version": "1.4.0",
"description": "Send text-to-speech notifications (or play an MP3) on your Google Home / Nest speakers.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "node --test"
},
"author": "Noel Portugal",
"keywords": [
"google home",
"google nest",
"chromecast",
"notifications",
"notifier",
"text-to-speech",
"tts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noelportugal/google-home-notifier.git"
},
"homepage": "https://github.com/noelportugal/google-home-notifier#readme",
"bugs": {
"url": "https://github.com/noelportugal/google-home-notifier/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"src/",
"google-home-notifier.js",
"google-home-notifier.d.ts",
"example/"
],
"dependencies": {
"bonjour-service": "^1.4.1",
"castv2-client": "^1.2.0",
"google-tts-api": "^2.0.2"
},
"devDependencies": {
"express": "^4.21.2",
"ngrok": "^4.3.3"
}
}