matterbridge-example-dynamic-platform 1.0.22 → 1.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "Matterbridge dynamic plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "MIT",
@@ -32,6 +32,7 @@
32
32
  "scripts": {
33
33
  "build": "tsc",
34
34
  "watch": "tsc --watch",
35
+ "start": "matterbridge",
35
36
  "start:bridge": "matterbridge -bridge",
36
37
  "start:childbridge": "matterbridge -childbridge",
37
38
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
@@ -42,14 +43,14 @@
42
43
  "lint:fix": "eslint --fix --max-warnings=0 .",
43
44
  "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
44
45
  "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
45
- "clean": "npm install --no-save rimraf && rimraf tsconfig.tsbuildinfo ./dist",
46
+ "clean": "npx rimraf tsconfig.tsbuildinfo ./dist",
46
47
  "cleanBuild": "npm run clean && tsc",
47
- "deepClean": "npm install --no-save rimraf && rimraf tsconfig.tsbuildinfo package-lock.json npm-shrinkwrap.json ./dist ./node_modules",
48
+ "deepClean": "npx rimraf tsconfig.tsbuildinfo package-lock.json npm-shrinkwrap.json ./dist ./node_modules",
48
49
  "deepCleanBuild": "npm run deepClean && npm install && npm link matterbridge && npm run build",
49
50
  "checkDependencies": "npx npm-check-updates",
50
- "updateDependencies": "npx npm-check-updates -u && npm install && npm link matterbridge && npm run cleanBuild",
51
- "prepublishOnly": "npm shrinkwrap",
52
- "npmPack": "npm run deepCleanBuild && npm shrinkwrap && npm pack && npm run deepCleanBuild",
51
+ "updateDependencies": "npx npm-check-updates -u && npm install && npm link matterbridge && npm run build",
52
+ "prepublishOnly": "npm pkg delete devDependencies && npm install --omit=dev && npm shrinkwrap",
53
+ "npmPack": "npm run cleanBuild && copy package.json package.log && npm pkg delete devDependencies && npm install --omit=dev && npm shrinkwrap && npm pack && copy package.log package.json && npm run deepCleanBuild",
53
54
  "matterbridge:add": "matterbridge -add .\\",
54
55
  "matterbridge:remove": "matterbridge -remove .\\",
55
56
  "matterbridge:enable": "matterbridge -enable .\\",
@@ -61,24 +62,8 @@
61
62
  "dev:uninstall": "npm uninstall matterbridge",
62
63
  "install": "node link-matterbridge-script.js"
63
64
  },
64
- "devDependencies": {
65
- "@eslint/js": "9.11.1",
66
- "@types/eslint__js": "8.42.3",
67
- "@types/jest": "29.5.13",
68
- "@types/node": "22.7.4",
69
- "eslint": "9.11.1",
70
- "eslint-config-prettier": "9.1.0",
71
- "eslint-plugin-jest": "28.8.3",
72
- "eslint-plugin-prettier": "5.2.1",
73
- "jest": "29.7.0",
74
- "prettier": "3.3.3",
75
- "rimraf": "6.0.1",
76
- "ts-jest": "29.2.5",
77
- "typescript": "5.6.2",
78
- "typescript-eslint": "8.8.0"
79
- },
80
65
  "dependencies": {
81
66
  "node-ansi-logger": "3.0.0",
82
67
  "node-persist-manager": "1.0.8"
83
68
  }
84
- }
69
+ }