-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "homebridge-mysmartblinds-bridge",
"displayName": "Homebridge MySmartBlinds Bridge",
"version": "3.0.1",
"description": "Homebrige plugin for mysmartblinds (using hardware bridge)",
"keywords": [
"homebridge-plugin",
"mysmartblinds",
"tiltsmarthome",
"category-hubs",
"category-climate"
],
"engines": {
"homebridge": ">=1.1.0",
"node": ">=14.15.0"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"prompt": "^1.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^22.8.6",
"@types/request-promise": "^4.1.46",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.4.0",
"homebridge": "^1.2.2",
"nodemon": "^3.0.1",
"rimraf": "^6.0.1",
"standard-version": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.4"
},
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint src/**.ts --max-warnings=0 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"test:mysmartblinds-login": "npm run build && node ./dist/test.js",
"prepublishOnly": "npm run lint && npm run build",
"release": "standard-version"
},
"author": {
"name": "Alex 'apexad' Martin"
},
"repository": {
"type": "git",
"url": "git://github.com/apexad/homebridge-mysmartblinds-bridge.git"
},
"bugs": {
"url": "https://github.com/apexad/homebridge-mysmartblinds-bridge/issues"
},
"main": "dist/index.js",
"bin": {
"homebridge-mysmartblinds-bridge": "./test.js"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/apexadm"
},
{
"type": "github",
"url": "https://github.com/sponsors/apexad"
}
],
"license": "MIT"
}