@scrypted/nvr 0.10.98 → 0.10.100

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,23 @@
1
1
  <details>
2
2
  <summary>Changelog</summary>
3
3
 
4
+ ### 0.10.99
5
+
6
+ enable preferred compute nodes
7
+
8
+
9
+ ### 0.10.98
10
+
11
+ wip rollup
12
+ fix build break
13
+ disposable holder
14
+ fixup resource management
15
+ remove platform/arch shims
16
+ comments
17
+ cluster affinity for motion detection
18
+ fix generator return cleanup crash
19
+
20
+
4
21
  ### 0.10.97
5
22
 
6
23
  fix detection on non-cluster mode
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.98",
3
+ "version": "0.10.100",
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",
@@ -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
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "Node16",
4
+ "moduleResolution": "Node16",
5
+ "target": "es2023",
6
+ "esModuleInterop": true,
7
+ "sourceMap": true,
8
+ },
9
+ "include": [
10
+ "src/**/*",
11
+ "billing/src/license-strings.ts"
12
+ ]
13
+ }