@scrypted/nvr 0.1.198 → 0.1.200
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 +9 -0
- package/dist/plugin.zip +0 -0
- package/package.json +78 -71
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 0.1.198
|
|
5
|
+
|
|
6
|
+
install coreml automatically on apple silicon
|
|
7
|
+
remove motion detector installation
|
|
8
|
+
fix ignore files
|
|
9
|
+
add SIMD support
|
|
10
|
+
fix reference frame in new motion detector
|
|
11
|
+
|
|
12
|
+
|
|
4
13
|
### 0.1.197
|
|
5
14
|
|
|
6
15
|
fix webpack
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,73 +1,80 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
2
|
+
"name": "@scrypted/nvr",
|
|
3
|
+
"version": "0.1.200",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"scrypted-setup-project": "scrypted-setup-project",
|
|
6
|
+
"prescrypted-setup-project": "scrypted-package-json",
|
|
7
|
+
"build": "scrypted-webpack",
|
|
8
|
+
"prebuild": "npm run asbuild",
|
|
9
|
+
"prepublishOnly": "npm run asbuild:release && scrypted-changelog && WEBPACK_DEVTOOL=nosources-source-map NODE_ENV=production scrypted-webpack",
|
|
10
|
+
"prescrypted-vscode-launch": "npm run asbuild:release && WEBPACK_DEVTOOL=nosources-source-map scrypted-webpack",
|
|
11
|
+
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
|
12
|
+
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
|
13
|
+
"scrypted-debug": "scrypted-debug",
|
|
14
|
+
"scrypted-deploy": "scrypted-deploy",
|
|
15
|
+
"scrypted-changelog": "scrypted-changelog",
|
|
16
|
+
"scrypted-package-json": "scrypted-package-json",
|
|
17
|
+
"scrypted-readme": "scrypted-readme",
|
|
18
|
+
"asbuild:debug": "asc assembly/index.ts --target debug --enable simd --exportRuntime",
|
|
19
|
+
"asbuild:release": "asc assembly/index.ts --target release --enable simd --exportRuntime",
|
|
20
|
+
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
|
|
21
|
+
"test": "node tests",
|
|
22
|
+
"start": "npx serve ."
|
|
23
|
+
},
|
|
24
|
+
"scrypted": {
|
|
25
|
+
"name": "Scrypted NVR",
|
|
26
|
+
"type": "DataSource",
|
|
27
|
+
"interfaces": [
|
|
28
|
+
"DeviceProvider",
|
|
29
|
+
"OauthClient",
|
|
30
|
+
"SystemSettings",
|
|
31
|
+
"Settings",
|
|
32
|
+
"HttpRequestHandler",
|
|
33
|
+
"BufferConverter",
|
|
34
|
+
"MixinProvider",
|
|
35
|
+
"LauncherApplication"
|
|
36
|
+
],
|
|
37
|
+
"pluginDependencies": [
|
|
38
|
+
"@scrypted/snapshot"
|
|
39
|
+
],
|
|
40
|
+
"realfs": true
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"scrypted",
|
|
44
|
+
"plugin",
|
|
45
|
+
"nvr",
|
|
46
|
+
"camera",
|
|
47
|
+
"network",
|
|
48
|
+
"video",
|
|
49
|
+
"recorder",
|
|
50
|
+
"timeline",
|
|
51
|
+
"timelapse"
|
|
52
|
+
],
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@koush/axios-digest-auth": "^0.8.5",
|
|
55
|
+
"@koush/werift-src": "file:../../scrypted/external/werift",
|
|
56
|
+
"@scrypted/common": "../../scrypted/common",
|
|
57
|
+
"@scrypted/sdk": "file:../../scrypted/sdk",
|
|
58
|
+
"@scrypted/types": "file:../../scrypted/sdk/types",
|
|
59
|
+
"@turf/area": "^6.5.0",
|
|
60
|
+
"axios": "^1.4.0",
|
|
61
|
+
"check-disk-space": "^3.4.0",
|
|
62
|
+
"fast-xml-parser": "^4.2.5",
|
|
63
|
+
"mkdirp": "^3.0.1",
|
|
64
|
+
"munkres-js": "^1.2.2",
|
|
65
|
+
"point-inside-polygon": "^1.0.3",
|
|
66
|
+
"polygon-clipping": "^0.15.3",
|
|
67
|
+
"polygon-overlap": "^1.0.5",
|
|
68
|
+
"rimraf": "^5.0.1",
|
|
69
|
+
"tmp-promise": "^3.0.3",
|
|
70
|
+
"uuid": "^9.0.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@types/mkdirp": "^1.0.2",
|
|
74
|
+
"@types/node": "^20.4.0",
|
|
75
|
+
"@types/rimraf": "^3.0.2",
|
|
76
|
+
"@types/uuid": "^9.0.2",
|
|
77
|
+
"assemblyscript": "^0.27.9",
|
|
78
|
+
"ts-node": "^10.9.1"
|
|
79
|
+
}
|
|
73
80
|
}
|