-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "valetudo-re",
"version": "0.10.0",
"versionSuffix": "",
"description": "Self-contained control webinterface for xiaomi vacuum robots",
"main": "index.js",
"bin": "index.js",
"license": "Apache-2.0",
"pkg": {
"assets": [
"client/**/*"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "cp -a client client.b && find client/ -type f \\( -iname \\*.json -o -iname \\*.js -o -iname \\*.html -o -iname \\*.css \\) -exec gzip -9 {} +",
"build": "pkg --targets node16-linuxstatic-armv7 --no-bytecode --options max-old-space-size=32,optimize_for_size --public-packages=prettycron . --output valetudo",
"postbuild": "if [ -d client.b ]; then rm -fr client && mv client.b client; fi"
},
"author": "",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-dynamic-middleware": "^1.0.0",
"express-force-ssl": "^0.3.2",
"mqtt": "^4.3.7",
"multer": "^1.4.5-lts.1",
"pngjs": "^5.0.0",
"prettycron": "^0.10.0",
"slimbot": "^5.1.0",
"socks5-client": "^1.2.8",
"ws": "^8.14.1"
},
"devDependencies": {
"pkg": "5.8.1"
}
}