mb-service-linux 2.0.3-dev-20260705-3d2f640 → 2.0.3

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.
package/CHANGELOG.md CHANGED
@@ -24,11 +24,13 @@ If you like this project and find it useful, please consider giving it a star on
24
24
 
25
25
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
26
26
 
27
- ## [2.0.3] - Dev branch
27
+ ## [2.0.3] - 2026-07-07
28
28
 
29
29
  ### Changed
30
30
 
31
31
  - [readme]: Add explanation for --bun parameter.
32
+ - [package]: Update dependencies.
33
+ - [package]: Upgrade package.
32
34
 
33
35
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
34
36
 
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import('../module.js');
3
+ export {};
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "mb-service-linux",
3
- "version": "2.0.3-dev-20260705-3d2f640",
3
+ "version": "2.0.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "mb-service-linux",
9
- "version": "2.0.3-dev-20260705-3d2f640",
9
+ "version": "2.0.3",
10
10
  "license": "Apache-2.0",
11
11
  "bin": {
12
- "mb-service": "bin/mb-service"
12
+ "mb-service": "dist/bin/mb-service.js"
13
13
  },
14
14
  "engines": {
15
15
  "node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mb-service-linux",
3
- "version": "2.0.3-dev-20260705-3d2f640",
3
+ "version": "2.0.3",
4
4
  "description": "Matterbridge service command line interface",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -52,10 +52,9 @@
52
52
  "node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
53
53
  },
54
54
  "bin": {
55
- "mb-service": "bin/mb-service"
55
+ "mb-service": "dist/bin/mb-service.js"
56
56
  },
57
57
  "files": [
58
- "bin",
59
58
  "dist",
60
59
  "npm-shrinkwrap.json",
61
60
  "CHANGELOG.md"
package/bin/mb-service DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- import('../dist/module.js');