-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.81 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "homebridge-aeg-robot",
"displayName": "Homebridge AEG Robot Vacuum",
"version": "2.3.1",
"description": "AEG RX9 / Electrolux Pure i9 robot vacuum plugin for Homebridge",
"license": "ISC",
"keywords": [
"Homebridge",
"homebridge-plugin",
"AEG",
"Electrolux",
"RX9",
"RX9.1",
"RX9.2",
"Pure i9",
"Pure i9.1",
"Pure i9.2",
"robot",
"vacuum",
"cleaner"
],
"author": {
"name": "Alexander Thoukydides",
"url": "https://www.thouky.co.uk/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/thoukydides"
},
{
"type": "paypal",
"url": "https://paypal.me/thoukydides"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/thouky"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/thouky"
}
],
"repository": {
"type": "git",
"url": "https://github.com/thoukydides/homebridge-aeg-robot.git"
},
"type": "module",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/thoukydides/homebridge-aeg-robot/issues"
},
"engines": {
"node": "^22.0.0 || ^20.9.0 || ^18.20.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"dependencies": {
"node-persist": "^4.0.3",
"semver": "^7.6.3",
"ts-interface-checker": "^1.0.2",
"undici": "^6.21.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@tsconfig/node18": "^18.2.4",
"@types/eslint__js": "^8.42.3",
"@types/node-persist": "^3.1.8",
"@types/node": "^18.19.67",
"@types/semver": "^7.5.8",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"homebridge-config-ui-x": "^4.64.0",
"homebridge": "^2.0.0-beta.23",
"nodemon": "^3.1.7",
"rimraf": "^5.0.10",
"ts-interface-builder": "^0.3.3",
"tsx": "^4.19.2",
"typescript-eslint": "^8.17.0",
"typescript": "^5.7.2"
},
"scripts": {
"build-checkers": "mkdir -p ./src/ti && ts-interface-builder -c -o ./src/ti ./src/*-types.ts && tsx bin/ts-interface-post.ts ./src/ti",
"build-tsc": "tsc -p ./src",
"build": "npm run build-checkers && npm run build-tsc",
"clean": "rimraf ./dist",
"lint": "eslint eslint.config.mjs 'bin/**/*.ts' 'src/**/*.ts' --max-warnings=0",
"watch": "nodemon",
"test": "tsx bin/test-startup.ts",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build && npm run lint"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}