@camstack/addon-camera-grid 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.
Files changed (3) hide show
  1. package/dist/index.js +46213 -0
  2. package/dist/index.mjs +46188 -0
  3. package/package.json +70 -0
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@camstack/addon-camera-grid",
3
+ "version": "0.1.1",
4
+ "description": "Composite cameras: several cameras combined into one fixed grid, emitted as an ordinary camera through the restream path",
5
+ "keywords": [
6
+ "camstack",
7
+ "addon",
8
+ "camstack-addon",
9
+ "camera",
10
+ "grid",
11
+ "composite"
12
+ ],
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/camstack/server"
17
+ },
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.js"
26
+ },
27
+ "./package.json": "./package.json"
28
+ },
29
+ "camstack": {
30
+ "displayName": "Camera Grids",
31
+ "addons": [
32
+ {
33
+ "id": "camera-grid",
34
+ "category": "system",
35
+ "name": "Camera Grids",
36
+ "version": "0.1.0",
37
+ "description": "Composite cameras: several cameras composed into one fixed picture and emitted as an ordinary camera — recorded, played back and bound like any other. The composition runs only while something is consuming it; object detection is switched off on a new grid because the cameras it is composed from are already analysed.",
38
+ "entry": "./dist/index.js",
39
+ "color": "#7c3aed",
40
+ "instanceMode": "unique",
41
+ "mode": "standalone",
42
+ "execution": {
43
+ "placement": "hub-only"
44
+ }
45
+ }
46
+ ]
47
+ },
48
+ "files": [
49
+ "dist",
50
+ "assets"
51
+ ],
52
+ "scripts": {
53
+ "build": "vite build",
54
+ "dev": "vite build --watch",
55
+ "typecheck": "tsc --noEmit",
56
+ "test": "vitest run",
57
+ "publish:npm": "npm publish --access public"
58
+ },
59
+ "peerDependencies": {
60
+ "@camstack/types": "*",
61
+ "zod": "^4.3.6"
62
+ },
63
+ "devDependencies": {
64
+ "@camstack/types": "*",
65
+ "typescript": "~6.0.3",
66
+ "vite": "^8.0.11",
67
+ "vitest": "^3.2.4",
68
+ "zod": "^4.3.6"
69
+ }
70
+ }