-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 976 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
{
"version": "2.0.8",
"name": "ajax2mqtt",
"displayName": "Ajax Security UART to MQTT bridge",
"description": "Bridge between Ajax uartBridge and MQTT",
"license": "Unlicense",
"main": "src/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/ingria/ajax2mqtt"
},
"keywords": [
"ajax-security",
"ajax-uart-bridge",
"ajax-fireprotect",
"ajax-homeassistant",
"ajax-mqtt"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "ESLINT_USE_FLAT_CONFIG=false npx eslint --config ./eslint.config.js --ext .mjs ./src",
"start": "node ./src/index.mjs"
},
"imports": {
"#src/*": "./src/*"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"consola": "^3.2",
"mqtt": "^5.9",
"serialport": "^12.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2"
}
}