-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
59 lines (59 loc) · 1.57 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
56
57
58
59
{
"name": "ecovacs-deebot",
"version": "0.9.6-beta.7",
"description": "Library for running Ecovacs Deebot vacuum cleaner robots",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "NODE_ENV=test mocha",
"test_windows": "SET NODE_ENV=test && mocha",
"appTest": "NODE_ENV=dev node example/app2.js",
"exportTypes": "node_modules/typescript/bin/tsc --declaration --allowJs --emitDeclarationOnly --downlevelIteration --resolveJsonModule --outDir types",
"exportAndCheckTypes": "node_modules/typescript/bin/tsc --declaration --allowJs --emitDeclarationOnly --downlevelIteration --resolveJsonModule --checkJs --outDir types"
},
"keywords": [
"ecovacs",
"deebot",
"yeedi",
"ozmo",
"vacuum",
"robot",
"airbot",
"air purifier",
"smart home",
"home automation"
],
"author": "Sascha Hölzel",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mrbungle64/ecovacs-deebot.js"
},
"dependencies": {
"axios": "1.7.7",
"ltx": "3.0.0",
"mqtt": "5.8.1",
"simple-xmpp": "2.3.1",
"@xmldom/xmldom": "0.9.0-beta.11",
"lzma": "2.3.2",
"uniqid": "5.4.0",
"chalk": "4.1.2"
},
"optionalDependencies": {
"canvas": "2.10.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/node": "^20.16.5",
"eslint": "^8.57.1",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"node-machine-id": "^1.1.12",
"nyc": "^17.1.0",
"typescript": "~4.6.4",
"typescript-eslint": "^8.6.0"
}
}