@scrypted/server 0.115.1 → 0.115.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/deno/deno-plugin-remote.ts +5 -0
- package/dist/cluster/cluster-hash.js +1 -1
- package/dist/cluster/cluster-hash.js.map +1 -1
- package/dist/cluster/connect-rpc-object.d.ts +2 -1
- package/dist/plugin/plugin-api.d.ts +1 -0
- package/dist/plugin/plugin-console.js +4 -0
- package/dist/plugin/plugin-console.js.map +1 -1
- package/dist/plugin/plugin-remote-stats.js +19 -15
- package/dist/plugin/plugin-remote-stats.js.map +1 -1
- package/dist/plugin/plugin-remote-worker.js +77 -45
- package/dist/plugin/plugin-remote-worker.js.map +1 -1
- package/dist/plugin/runtime/child-process-worker.js +1 -1
- package/dist/plugin/runtime/child-process-worker.js.map +1 -1
- package/dist/plugin/runtime/deno-worker.d.ts +10 -0
- package/dist/plugin/runtime/deno-worker.js +79 -0
- package/dist/plugin/runtime/deno-worker.js.map +1 -0
- package/dist/plugin/runtime/node-fork-worker.d.ts +1 -1
- package/dist/plugin/runtime/node-fork-worker.js +2 -2
- package/dist/plugin/runtime/node-fork-worker.js.map +1 -1
- package/dist/plugin/runtime/node-thread-worker.d.ts +3 -3
- package/dist/plugin/runtime/node-thread-worker.js +22 -7
- package/dist/plugin/runtime/node-thread-worker.js.map +1 -1
- package/dist/plugin/runtime/python-worker.d.ts +0 -1
- package/dist/plugin/runtime/python-worker.js +0 -3
- package/dist/plugin/runtime/python-worker.js.map +1 -1
- package/dist/rpc-peer-eval.d.ts +4 -1
- package/dist/rpc-peer-eval.js +18 -15
- package/dist/rpc-peer-eval.js.map +1 -1
- package/dist/rpc.js +2 -2
- package/dist/rpc.js.map +1 -1
- package/dist/runtime.js +2 -0
- package/dist/runtime.js.map +1 -1
- package/dist/scrypted-main-exports.js +2 -2
- package/dist/scrypted-main-exports.js.map +1 -1
- package/dist/scrypted-main.js +4 -1
- package/dist/scrypted-main.js.map +1 -1
- package/dist/scrypted-plugin-main.js +14 -4
- package/dist/scrypted-plugin-main.js.map +1 -1
- package/package.json +4 -3
- package/python/plugin_remote.py +406 -218
- package/src/cluster/cluster-hash.ts +1 -1
- package/src/cluster/connect-rpc-object.ts +2 -1
- package/src/plugin/plugin-api.ts +1 -0
- package/src/plugin/plugin-console.ts +5 -0
- package/src/plugin/plugin-remote-stats.ts +20 -15
- package/src/plugin/plugin-remote-worker.ts +87 -47
- package/src/plugin/runtime/child-process-worker.ts +1 -1
- package/src/plugin/runtime/deno-worker.ts +83 -0
- package/src/plugin/runtime/node-fork-worker.ts +3 -5
- package/src/plugin/runtime/node-thread-worker.ts +22 -6
- package/src/plugin/runtime/python-worker.ts +0 -4
- package/src/rpc-peer-eval.ts +23 -19
- package/src/rpc.ts +3 -3
- package/src/runtime.ts +2 -0
- package/src/scrypted-main-exports.ts +2 -2
- package/src/scrypted-main.ts +4 -1
- package/src/scrypted-plugin-main.ts +14 -4
package/package.json
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@scrypted/server",
|
3
|
-
"version": "0.115.
|
3
|
+
"version": "0.115.3",
|
4
4
|
"description": "",
|
5
5
|
"dependencies": {
|
6
6
|
"@mapbox/node-pre-gyp": "^1.0.11",
|
7
|
+
"@scrypted/deno": "^1.45.5",
|
7
8
|
"@scrypted/ffmpeg-static": "^6.1.0-build1",
|
8
9
|
"@scrypted/node-pty": "^1.0.18",
|
9
|
-
"@scrypted/types": "^0.3.
|
10
|
+
"@scrypted/types": "^0.3.44",
|
10
11
|
"adm-zip": "^0.5.14",
|
11
12
|
"body-parser": "^1.20.2",
|
12
13
|
"cookie-parser": "^1.4.6",
|
@@ -46,7 +47,7 @@
|
|
46
47
|
"@types/semver": "^7.5.8",
|
47
48
|
"@types/source-map-support": "^0.5.10",
|
48
49
|
"@types/whatwg-mimetype": "^3.0.2",
|
49
|
-
"@types/ws": "^8.5.
|
50
|
+
"@types/ws": "^8.5.12"
|
50
51
|
},
|
51
52
|
"bin": {
|
52
53
|
"scrypted-serve": "bin/scrypted-serve"
|