@camstack/addon-osd-manager 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/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@camstack/addon-osd-manager",
3
+ "version": "0.1.1",
4
+ "description": "Binds camera on-screen-display slots to live device state",
5
+ "keywords": [
6
+ "camstack",
7
+ "addon",
8
+ "camstack-addon",
9
+ "osd",
10
+ "overlay"
11
+ ],
12
+ "license": "MIT",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/camstack/server"
16
+ },
17
+ "main": "./dist/index.js",
18
+ "module": "./dist/index.mjs",
19
+ "types": "./dist/index.d.ts",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.mjs",
24
+ "require": "./dist/index.js"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "camstack": {
29
+ "displayName": "OSD Manager",
30
+ "addons": [
31
+ {
32
+ "id": "osd-manager",
33
+ "category": "system",
34
+ "name": "OSD Manager",
35
+ "version": "0.1.0",
36
+ "description": "Drives the text a camera burns into its own video. Each overlay slot the camera exposes can be bound to a live value — any cap-keyed device state, a clock, or a literal — formatted with a template and shown only while a condition holds. Conditions use the notification centre's vocabulary. Writes nothing when the rendered text has not changed.",
37
+ "entry": "./dist/index.js",
38
+ "icon": "assets/icon.svg",
39
+ "color": "#f59e0b",
40
+ "instanceMode": "unique",
41
+ "mode": "standalone",
42
+ "execution": {
43
+ "placement": "hub-only"
44
+ },
45
+ "capabilities": [
46
+ {
47
+ "name": "osd-manager"
48
+ }
49
+ ]
50
+ }
51
+ ]
52
+ },
53
+ "files": [
54
+ "dist",
55
+ "assets"
56
+ ],
57
+ "scripts": {
58
+ "build": "vite build",
59
+ "dev": "vite build --watch",
60
+ "typecheck": "tsc --noEmit",
61
+ "test": "vitest run",
62
+ "publish": "npm publish --access public"
63
+ },
64
+ "peerDependencies": {
65
+ "@camstack/types": "*",
66
+ "zod": "^4.3.6"
67
+ },
68
+ "devDependencies": {
69
+ "@camstack/types": "*",
70
+ "typescript": "~6.0.3",
71
+ "vite": "^8.0.11",
72
+ "vitest": "^3.2.4",
73
+ "zod": "^4.3.6"
74
+ }
75
+ }