@scrypted/nvr 0.10.97 → 0.10.99
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 +17 -0
- package/dist/plugin.zip +0 -0
- package/package.json +4 -5
- package/tsconfig.rollup.json +17 -0
- package/tsconfig.webpack.json +13 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 0.10.98
|
|
5
|
+
|
|
6
|
+
wip rollup
|
|
7
|
+
fix build break
|
|
8
|
+
disposable holder
|
|
9
|
+
fixup resource management
|
|
10
|
+
remove platform/arch shims
|
|
11
|
+
comments
|
|
12
|
+
cluster affinity for motion detection
|
|
13
|
+
fix generator return cleanup crash
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 0.10.97
|
|
17
|
+
|
|
18
|
+
fix detection on non-cluster mode
|
|
19
|
+
|
|
20
|
+
|
|
4
21
|
### 0.10.96
|
|
5
22
|
|
|
6
23
|
use label hints for heterogenous clusters
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrypted/nvr",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.99",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./src/main.ts": "./main.nodejs.js",
|
|
6
6
|
"./src/motion-fork.ts": "./motion-fork.nodejs.js",
|
|
@@ -44,8 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"pluginDependencies": [
|
|
46
46
|
"@scrypted/snapshot"
|
|
47
|
-
]
|
|
48
|
-
"realfs": true
|
|
47
|
+
]
|
|
49
48
|
},
|
|
50
49
|
"keywords": [
|
|
51
50
|
"scrypted",
|
|
@@ -75,8 +74,8 @@
|
|
|
75
74
|
},
|
|
76
75
|
"devDependencies": {
|
|
77
76
|
"@scrypted/client": "^1.3.6",
|
|
78
|
-
"@scrypted/libav": "^1.0.
|
|
79
|
-
"@types/node": "^22.9.
|
|
77
|
+
"@scrypted/libav": "^1.0.124",
|
|
78
|
+
"@types/node": "^22.9.3",
|
|
80
79
|
"@types/semver": "^7.5.8",
|
|
81
80
|
"@types/uuid": "^10.0.0",
|
|
82
81
|
"assemblyscript": "^0.27.31",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ESNext",
|
|
4
|
+
"moduleResolution": "bundler",
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"allowSyntheticDefaultImports": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"sourceMap": true
|
|
10
|
+
},
|
|
11
|
+
"exclude": [
|
|
12
|
+
"assembly/**/*"
|
|
13
|
+
],
|
|
14
|
+
"include": [
|
|
15
|
+
"**/*"
|
|
16
|
+
]
|
|
17
|
+
}
|