@apocaliss92/scrypted-advanced-notifier 1.0.0-beta.3
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/README.md +5 -0
- package/dist/main.nodejs.js.LICENSE.txt +10 -0
- package/dist/plugin.zip +0 -0
- package/package.json +54 -0
- package/tsconfig.json +14 -0
package/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
2
|
+
|
3
|
+
/**
|
4
|
+
* @license
|
5
|
+
* Lodash <https://lodash.com/>
|
6
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
7
|
+
* Released under MIT license <https://lodash.com/license>
|
8
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
9
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
10
|
+
*/
|
package/dist/plugin.zip
ADDED
Binary file
|
package/package.json
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
{
|
2
|
+
"name": "@apocaliss92/scrypted-advanced-notifier",
|
3
|
+
"description": "Advanced notifier rule based with connections to MQTT and Homeassistant",
|
4
|
+
"repository": {
|
5
|
+
"type": "git",
|
6
|
+
"url": "https://github.com/apocaliss92/scrypted-advanced-notifier"
|
7
|
+
},
|
8
|
+
"version": "1.0.0-beta.3",
|
9
|
+
"scripts": {
|
10
|
+
"scrypted-setup-project": "scrypted-setup-project",
|
11
|
+
"prescrypted-setup-project": "scrypted-package-json",
|
12
|
+
"build": "scrypted-webpack",
|
13
|
+
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
|
14
|
+
"prescrypted-vscode-launch": "scrypted-webpack",
|
15
|
+
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
16
|
+
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
17
|
+
"scrypted-debug": "scrypted-debug",
|
18
|
+
"scrypted-deploy": "scrypted-deploy",
|
19
|
+
"scrypted-readme": "scrypted-readme",
|
20
|
+
"scrypted-package-json": "scrypted-package-json"
|
21
|
+
},
|
22
|
+
"keywords": [
|
23
|
+
"scrypted",
|
24
|
+
"plugin",
|
25
|
+
"homeassistant",
|
26
|
+
"mqtt",
|
27
|
+
"metadata",
|
28
|
+
"notifier",
|
29
|
+
"filter",
|
30
|
+
"track"
|
31
|
+
],
|
32
|
+
"scrypted": {
|
33
|
+
"name": "Advanced notifier",
|
34
|
+
"type": "API",
|
35
|
+
"interfaces": [
|
36
|
+
"Settings",
|
37
|
+
"DeviceProvider",
|
38
|
+
"MixinProvider",
|
39
|
+
"HttpRequestHandler"
|
40
|
+
],
|
41
|
+
"pluginDependencies": []
|
42
|
+
},
|
43
|
+
"dependencies": {
|
44
|
+
"@scrypted/sdk": "^0.3.65",
|
45
|
+
"axios": "^0.23.0",
|
46
|
+
"lodash": "^4.17.21",
|
47
|
+
"mqtt": "^4.2.8",
|
48
|
+
"sharp": "^0.33.5"
|
49
|
+
},
|
50
|
+
"devDependencies": {
|
51
|
+
"@types/lodash": "^4.17.12",
|
52
|
+
"@types/node": "^20.11.0"
|
53
|
+
}
|
54
|
+
}
|