@scrypted/core 0.1.57 → 0.1.60

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/README.md CHANGED
@@ -1,3 +1,3 @@
1
- # Scrypted Web UI Plugin
1
+ # Scrypted Core Plugin
2
2
 
3
- The Core Plugin provides the web UI for Scrypted.
3
+ The Core Plugin provides the UI, Automations, Device Groups, and other core functionality within Scrypted.
package/dist/plugin.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/core",
3
- "version": "0.1.57",
3
+ "version": "0.1.60",
4
4
  "description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.",
5
5
  "author": "Scrypted",
6
6
  "license": "Apache-2.0",
@@ -29,7 +29,8 @@
29
29
  "@scrypted/launcher-ignore",
30
30
  "HttpRequestHandler",
31
31
  "EngineIOHandler",
32
- "DeviceProvider"
32
+ "DeviceProvider",
33
+ "Settings"
33
34
  ],
34
35
  "pluginDependencies": [
35
36
  "@scrypted/webrtc"
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "resolveJsonModule": true,
4
- "moduleResolution": "node",
4
+ "moduleResolution": "Node16",
5
5
  "target": "esnext",
6
6
  "esModuleInterop": true,
7
7
  },