@camera.ui/camera-ui-nvr 0.0.17

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 ADDED
@@ -0,0 +1,8 @@
1
+ All notable changes to this project will be documented in this file.
2
+
3
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+
6
+ ## [X.X.X] - ???
7
+
8
+ - Initial Release
package/LICENSE.md ADDED
@@ -0,0 +1,16 @@
1
+ Copyright (c) 2023-2026 seydx <hi@seydx.dev>
2
+ All Rights Reserved.
3
+
4
+ This software and its source code are proprietary and confidential.
5
+ Unauthorized copying, use, modification, merging, publishing,
6
+ distribution, sublicensing, or sale of this software, via any medium,
7
+ in whole or in part, is strictly prohibited without the express prior
8
+ written permission of the copyright holder.
9
+
10
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
11
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
12
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
13
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
14
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
15
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
16
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @camera.ui/camera-ui-nvr
2
+
3
+ [![npm](https://img.shields.io/npm/v/@camera.ui/camera-ui-nvr?label=npm&logo=npm)](https://www.npmjs.com/package/@camera.ui/camera-ui-nvr)
4
+ [![License](https://img.shields.io/github/license/cameraui/camera-ui-nvr)](LICENSE.md)
5
+
6
+ Manage and store video recordings from your cameras. Supports continuous and event-based recording with flexible storage options.
7
+
8
+ ---
9
+
10
+ _Part of the camera.ui ecosystem - A comprehensive camera management solution._
package/bundle.zip ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "displayName": "NVR",
3
+ "name": "@camera.ui/camera-ui-nvr",
4
+ "version": "0.0.17",
5
+ "license": "UNLICENSED",
6
+ "description": "Manage and store video recordings from your cameras. Supports continuous and event-based recording with flexible storage options.",
7
+ "author": "seydx (https://github.com/cameraui/camera-ui-nvr)",
8
+ "main": "./main.go",
9
+ "type": "commonjs",
10
+ "scripts": {
11
+ "audit": "npm audit fix",
12
+ "build": "rimraf dist && go build -o /dev/null ./src/",
13
+ "bundle": "npm run build && cui bundle",
14
+ "bundle:dev": "npm run build && cross-env MODE=development cui bundle",
15
+ "format": "gofmt -w ./cmd/* ./internal/* ./src/* && go fix ./cmd/... ./internal/... ./src/...",
16
+ "install-updates": "npm i --save && go mod tidy",
17
+ "lint": "staticcheck ./cmd/... ./internal/... ./src/... && golangci-lint run ./cmd/... ./internal/... ./src/...",
18
+ "prepublishOnly": "node -e \"if(!process.env.SAFE_PUBLISH){console.error('Error: Please use @camera.ui/cli to publish the plugin:\\n npm run publish:alpha\\n npm run publish:beta\\n npm run publish:latest\\n');process.exit(1)}\"",
19
+ "publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
20
+ "publish:beta": "npm i --save && npm run bundle && cui publish --beta",
21
+ "publish:latest": "npm i --save && npm run bundle && cui publish --latest",
22
+ "release": "bash scripts/release.sh",
23
+ "setup": "bash scripts/setup.sh",
24
+ "test": "go test ./...",
25
+ "update": "updates --update ./"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/cameraui/camera-ui-nvr/issues"
29
+ },
30
+ "engines": {
31
+ "camera.ui": ">=0.0.66",
32
+ "node": ">=22.0.0"
33
+ },
34
+ "homepage": "https://github.com/cameraui/camera-ui-nvr#readme",
35
+ "keywords": [
36
+ "camera-ui-plugin",
37
+ "nvr"
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/cameraui/camera-ui-nvr.git"
42
+ },
43
+ "optionalDependencies": {
44
+ "@camera.ui/camera-ui-nvr-darwin-arm64": "0.0.17",
45
+ "@camera.ui/camera-ui-nvr-darwin-amd64": "0.0.17",
46
+ "@camera.ui/camera-ui-nvr-linux-amd64": "0.0.17",
47
+ "@camera.ui/camera-ui-nvr-linux-arm64": "0.0.17",
48
+ "@camera.ui/camera-ui-nvr-windows-amd64": "0.0.17",
49
+ "@camera.ui/camera-ui-nvr-windows-arm64": "0.0.17",
50
+ "@camera.ui/camera-ui-nvr-linux-amd64-musl": "0.0.17",
51
+ "@camera.ui/camera-ui-nvr-linux-arm64-musl": "0.0.17"
52
+ },
53
+ "files": [
54
+ "bundle.zip",
55
+ "CHANGELOG.md"
56
+ ]
57
+ }