@project-chip/matter-node.js-examples 0.6.1-alpha.0-20231108-f1d82f9 → 0.6.1-alpha.0-20231110-2ec0f70

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/package.json +13 -12
  2. package/src/tsconfig.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@project-chip/matter-node.js-examples",
3
- "version": "0.6.1-alpha.0-20231108-f1d82f9",
3
+ "version": "0.6.1-alpha.0-20231110-2ec0f70",
4
4
  "description": "CLI/Reference implementation scripts for Matter protocol for node.js",
5
5
  "keywords": [
6
6
  "iot",
@@ -24,14 +24,14 @@
24
24
  "url": "https://github.com/project-chip/matter.js.git"
25
25
  },
26
26
  "scripts": {
27
- "clean": "build clean",
28
- "build": "build",
29
- "build-clean": "build --clean",
30
- "matter-device": "run src/examples/DeviceNode.ts",
31
- "matter-bridge": "run src/examples/BridgedDevicesNode.ts",
32
- "matter-composeddevice": "run src/examples/ComposedDeviceNode.ts",
33
- "matter-multidevice": "run src/examples/MultiDeviceNode.ts",
34
- "matter-controller": "run src/examples/ControllerNode.ts",
27
+ "clean": "matter-build clean",
28
+ "build": "matter-build",
29
+ "build-clean": "matter-build --clean",
30
+ "matter-device": "matter-run src/examples/DeviceNode.ts",
31
+ "matter-bridge": "matter-run src/examples/BridgedDevicesNode.ts",
32
+ "matter-composeddevice": "matter-run src/examples/ComposedDeviceNode.ts",
33
+ "matter-multidevice": "matter-run src/examples/MultiDeviceNode.ts",
34
+ "matter-controller": "matter-run src/examples/ControllerNode.ts",
35
35
  "bundle-device": "esbuild src/examples/DeviceNode.ts --bundle --platform=node --conditions=esbuild --external:@abandonware/bleno --external:@abandonware/bluetooth-hci-socket --sourcemap --minify --outfile=build/bundle/DeviceNode.cjs",
36
36
  "matter-device-bundled": "node --enable-source-maps build/bundle/DeviceNode.cjs"
37
37
  },
@@ -47,8 +47,9 @@
47
47
  "typescript": "^5.2.2"
48
48
  },
49
49
  "dependencies": {
50
- "@project-chip/matter-node-ble.js": "0.6.1-alpha.0-20231108-f1d82f9",
51
- "@project-chip/matter-node.js": "0.6.1-alpha.0-20231108-f1d82f9"
50
+ "@project-chip/matter-node-ble.js": "0.6.1-alpha.0-20231110-2ec0f70",
51
+ "@project-chip/matter-node.js": "0.6.1-alpha.0-20231110-2ec0f70",
52
+ "@project-chip/matter.js-tools": "0.6.1-alpha.0-20231110-2ec0f70"
52
53
  },
53
54
  "engines": {
54
55
  "_comment": "For Crypto.hkdf support",
@@ -64,5 +65,5 @@
64
65
  "publishConfig": {
65
66
  "access": "public"
66
67
  },
67
- "gitHead": "41321d2edc8257353b6b5a43322e9d4a4995bf9b"
68
+ "gitHead": "cbbb2faa349689665a1e32ab90c5e93b010b5e05"
68
69
  }
package/src/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../../tools/tsconfig.base.json",
2
+ "extends": "../../matter.js-tools/tsconfig.base.json",
3
3
  "compilerOptions": {
4
4
  "outDir": "../dist/esm",
5
5
  "types": ["node"]