@o-lukas/homebridge-smartthings-tv 1.0.6 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +24 -9
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Homebridge SmartThings TV
2
2
 
3
3
  [![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
4
+ [![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)
4
5
  ![NPM Version](https://badgen.net/npm/v/@o-lukas/homebridge-smartthings-tv?label=stable)
5
6
  ![NPM Node Version](https://badgen.net/npm/node/@o-lukas/homebridge-smartthings-tv)
6
7
  ![NPM Total Downloads](https://badgen.net/npm/dt/@o-lukas/homebridge-smartthings-tv)
7
8
  ![GitHub issues](https://img.shields.io/github/issues/o-lukas/homebridge-smartthings-tv?label=Issues)
8
9
  [![Build and Lint](https://github.com/o-lukas/homebridge-smartthings-tv/actions/workflows/build.yml/badge.svg)](https://github.com/o-lukas/homebridge-smartthings-tv/actions/workflows/build.yml)
9
- [![Publish to NPM](https://github.com/o-lukas/homebridge-smartthings-tv/actions/workflows/publish.yml/badge.svg)](https://github.com/o-lukas/homebridge-smartthings-tv/actions/workflows/publish.yml)
10
10
 
11
11
  This is a plugin for [Homebridge](https://github.com/homebridge/homebridge). It offers some basic functions to control Samsung TVs using the SmartThings API.
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Homebridge SmartThings TV",
3
3
  "name": "@o-lukas/homebridge-smartthings-tv",
4
- "version": "1.0.6",
4
+ "version": "1.1.0",
5
5
  "description": "This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -24,7 +24,8 @@
24
24
  "lint": "eslint src/**.ts --max-warnings=0",
25
25
  "watch": "npm run build && npm link && nodemon",
26
26
  "build": "rimraf ./dist && tsc",
27
- "prepublishOnly": "npm run lint && npm run build"
27
+ "prepublishOnly": "npm run lint && npm run build",
28
+ "semantic-release": "semantic-release"
28
29
  },
29
30
  "keywords": [
30
31
  "homebridge",
@@ -37,21 +38,35 @@
37
38
  "remote"
38
39
  ],
39
40
  "dependencies": {
40
- "@smartthings/core-sdk": "^5.3.0",
41
+ "@smartthings/core-sdk": "^6.0.0",
41
42
  "ping": "^0.4.4",
42
43
  "wol": "^1.0.7"
43
44
  },
44
45
  "devDependencies": {
45
- "@types/node": "^18.15.6",
46
+ "@types/node": "^18.15.11",
46
47
  "@types/ping": "^0.4.1",
47
48
  "@types/wol": "^1.0.1",
48
- "@typescript-eslint/eslint-plugin": "^5.56.0",
49
- "@typescript-eslint/parser": "^5.56.0",
50
- "eslint": "^8.36.0",
49
+ "@typescript-eslint/eslint-plugin": "^5.57.0",
50
+ "@typescript-eslint/parser": "^5.57.0",
51
+ "eslint": "^8.37.0",
51
52
  "homebridge": "^1.6.0",
52
53
  "nodemon": "^2.0.22",
53
54
  "rimraf": "^4.4.1",
54
55
  "ts-node": "^10.9.1",
55
- "typescript": "^5.0.2"
56
+ "typescript": "^5.0.3",
57
+ "semantic-release": "^21.0.0"
58
+ },
59
+ "release": {
60
+ "branches": [
61
+ "main",
62
+ {
63
+ "name": "beta",
64
+ "prerelease": true
65
+ },
66
+ {
67
+ "name": "alpha",
68
+ "prerelease": true
69
+ }
70
+ ]
56
71
  }
57
- }
72
+ }