-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 818 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 818 Bytes
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
{
"name": "node-switch",
"description": "implementation of a home automation gui",
"version": "0.3.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/seriousme/node-switch.git"
},
"keywords": [
"gui",
"lightswitch"
],
"scripts": {
"start": "node server.js",
"startrules": "node rules/rules.js",
"format": "biome format --write ."
},
"resolutions": {
"cookie": ">= 0.7.0"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.1020.0",
"aedes": "^1.0.2",
"aedes-persistence-level": "^9.1.3",
"await-spawn": "^4.0.2",
"debug": "^4.4.3",
"express": "^5.2.1",
"level": "^10.0.0",
"mqtt": "^5.15.1",
"suncalc": "^1.9.0",
"ws": "^8.20.0"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10"
}
}