@camstack/addon-provider-wyze 0.1.0

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.js ADDED
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_addon = require("./addon.js");
3
+ exports.WyzeCamera = require_addon.WyzeCamera;
4
+ exports.WyzeProviderAddon = require_addon.WyzeProviderAddon;
5
+ exports.wyzeCameraSchema = require_addon.wyzeCameraSchema;
package/dist/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { WyzeProviderAddon, n as wyzeCameraSchema, t as WyzeCamera } from "./addon.mjs";
2
+ export { WyzeCamera, WyzeProviderAddon, wyzeCameraSchema };
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@camstack/addon-provider-wyze",
3
+ "version": "0.1.0",
4
+ "description": "Wyze camera device-provider addon for CamStack — wraps the @apocaliss92/wyze-bridge-js P2P/DTLS client, feeding the stream-broker via the pull-rfc4571 lazy-publish path (a structural twin of addon-provider-reolink)",
5
+ "keywords": [
6
+ "camstack",
7
+ "addon",
8
+ "camstack-addon",
9
+ "wyze",
10
+ "camera",
11
+ "rfc4571",
12
+ "p2p",
13
+ "provider"
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": "Wyze Provider",
33
+ "addons": [
34
+ {
35
+ "id": "provider-wyze",
36
+ "category": "providers",
37
+ "name": "Wyze",
38
+ "version": "0.1.0",
39
+ "description": "Adopt Wyze cameras over the local P2P/DTLS protocol via Wyze-cloud discovery — H264/H265 + audio into the stream-broker, snapshot, motion and two-way audio",
40
+ "entry": "./dist/addon.js",
41
+ "icon": "assets/icon.svg",
42
+ "color": "#00c389",
43
+ "instanceMode": "unique",
44
+ "execution": {
45
+ "placement": "hub-only"
46
+ },
47
+ "capabilities": [
48
+ {
49
+ "name": "device-provider"
50
+ },
51
+ {
52
+ "name": "stream-params"
53
+ }
54
+ ]
55
+ }
56
+ ]
57
+ },
58
+ "files": [
59
+ "dist",
60
+ "assets"
61
+ ],
62
+ "scripts": {
63
+ "build": "vite build",
64
+ "dev": "vite build --watch",
65
+ "typecheck": "tsc --noEmit",
66
+ "test": "vitest run",
67
+ "publish": "npm publish --access public"
68
+ },
69
+ "peerDependencies": {
70
+ "@camstack/types": "*",
71
+ "zod": "^4.3.6"
72
+ },
73
+ "devDependencies": {
74
+ "@camstack/types": "*",
75
+ "typescript": "~6.0.3",
76
+ "vite": "^8.0.11",
77
+ "vitest": "^2.0.0",
78
+ "zod": "^4.3.6",
79
+ "@apocaliss92/wyze-bridge-js": "file:./vendor/apocaliss92-wyze-bridge-js-0.1.0.tgz"
80
+ }
81
+ }