-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
52
53
54
55
{
"name": "@tago-io/tcore-plugin-mqtt",
"version": "0.7.2",
"private": false,
"main": "./build/index.js",
"engines": {
"tcore": ">= 0.7.0 < 1.0.0"
},
"files": [
"build/**/*",
"assets/**/*"
],
"tcore": {
"name": "MQTT Broker",
"short_description": "Adds new Action triggers, types, and the MQTT broker for you to connect your devices and gateways",
"full_description": "./README.md",
"icon": "./assets/icon.png",
"cluster": true,
"types": [
"service",
"action-type",
"action-trigger"
],
"permissions": [
"device",
"action",
"device-data"
]
},
"scripts": {
"pack": "tcore-plugin pack",
"watch": "node esbuild/build.js --watch",
"build": "rm -rf ./build; node esbuild/build.js"
},
"dependencies": {
"@tago-io/tcore-sdk": "0.5.0",
"async": "3.2.1",
"mqtt-connection": "4.1.0"
},
"devDependencies": {
"@types/async": "^3.2.12",
"esbuild": "0.14.23",
"@types/ms": "^0.7.31",
"@types/node": "16.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint": "^8.6.0",
"prettier": "^2.5.1"
}
}