@camstack/addon-provider-reolink 0.1.1

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/dist/index.mjs ADDED
@@ -0,0 +1,11 @@
1
+ import {
2
+ ReolinkCamera,
3
+ ReolinkProviderAddon,
4
+ reolinkCameraSchema
5
+ } from "./chunk-QQBDPNVO.mjs";
6
+ export {
7
+ ReolinkCamera,
8
+ ReolinkProviderAddon,
9
+ reolinkCameraSchema
10
+ };
11
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "@camstack/addon-provider-reolink",
3
+ "version": "0.1.1",
4
+ "description": "Reolink camera device provider addon for CamStack — native Baichuan protocol (no RTSP)",
5
+ "keywords": [
6
+ "camstack",
7
+ "addon",
8
+ "camstack-addon",
9
+ "reolink",
10
+ "baichuan",
11
+ "provider",
12
+ "camera",
13
+ "streaming"
14
+ ],
15
+ "license": "MIT",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/camstack/server"
19
+ },
20
+ "main": "./dist/index.js",
21
+ "module": "./dist/index.mjs",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.mjs",
27
+ "require": "./dist/index.js"
28
+ },
29
+ "./package.json": "./package.json"
30
+ },
31
+ "camstack": {
32
+ "displayName": "Reolink Provider",
33
+ "addons": [
34
+ {
35
+ "id": "provider-reolink",
36
+ "name": "Reolink",
37
+ "version": "0.1.0",
38
+ "description": "Native Baichuan protocol connection to Reolink cameras — direct Annex-B push, no RTSP intermediary",
39
+ "entry": "./dist/addon.js",
40
+ "icon": "assets/icon.svg",
41
+ "color": "#1ea2e9",
42
+ "instanceMode": "unique",
43
+ "execution": {
44
+ "placement": "hub-only",
45
+ "group": "provider-reolink-isolated"
46
+ },
47
+ "capabilities": [
48
+ {
49
+ "name": "device-provider"
50
+ }
51
+ ]
52
+ }
53
+ ]
54
+ },
55
+ "files": [
56
+ "dist",
57
+ "assets"
58
+ ],
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "dev": "tsup --watch",
62
+ "typecheck": "tsc --noEmit",
63
+ "publish": "npm publish --access public"
64
+ },
65
+ "dependencies": {
66
+ "@apocaliss92/nodelink-js": "^0.4.9"
67
+ },
68
+ "peerDependencies": {
69
+ "@camstack/types": "^0.1.0",
70
+ "werift": "^0.22.9",
71
+ "zod": "^4.3.6"
72
+ },
73
+ "peerDependenciesMeta": {
74
+ "werift": {
75
+ "optional": true
76
+ }
77
+ },
78
+ "devDependencies": {
79
+ "@camstack/types": "*",
80
+ "tsup": "^8.0.0",
81
+ "typescript": "~5.9.0",
82
+ "zod": "^4.3.6"
83
+ }
84
+ }