@camera.ui/camera-ui-pamdiff 0.0.25 → 0.0.27

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 CHANGED
@@ -1,8 +1,3 @@
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] - ???
1
+ ## [1.0.0] - 01.07.2026
7
2
 
8
3
  - Initial Release
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2024 seydx <dev@seydx.com>
3
+ Copyright (c) 2023-2026 seydx <hi@seydx.dev>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/README.md CHANGED
@@ -1 +1,5 @@
1
- # @camera.ui/camera-ui-pamdiff
1
+ # Pam Diff
2
+
3
+ Pixel-based motion detection for camera.ui using the pam-diff algorithm on ffmpeg PAM frames.
4
+
5
+ `@camera.ui/camera-ui-pamdiff`
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "displayName": "Pam Diff",
3
3
  "name": "@camera.ui/camera-ui-pamdiff",
4
- "version": "0.0.25",
5
- "description": "Efficient pixel-based motion detection using PAM difference algorithm. Light on resources with quick response time.",
6
- "author": "seydx (https://github.com/seydx/camera.ui)",
4
+ "version": "0.0.27",
5
+ "description": "Pixel-based motion detection for camera.ui using the pam-diff algorithm on ffmpeg PAM frames.",
6
+ "author": "seydx (https://github.com/cameraui/plugins)",
7
7
  "main": "./dist/index.js",
8
8
  "type": "commonjs",
9
9
  "scripts": {
@@ -24,16 +24,15 @@
24
24
  "pam-diff": "^1.2.1"
25
25
  },
26
26
  "bugs": {
27
- "url": "https://github.com/seydx/camera.ui/issues"
27
+ "url": "https://github.com/cameraui/plugins/issues"
28
28
  },
29
29
  "engines": {
30
30
  "camera.ui": ">=0.0.50",
31
31
  "node": ">=22.0.0"
32
32
  },
33
- "homepage": "https://github.com/seydx/camera.ui#readme",
33
+ "homepage": "https://github.com/cameraui/plugins/tree/main/camera-ui-pamdiff#readme",
34
34
  "keywords": [
35
35
  "camera-ui-plugin",
36
- "cameras",
37
36
  "pamdiff",
38
37
  "motion",
39
38
  "detection"
@@ -41,13 +40,11 @@
41
40
  "license": "MIT",
42
41
  "repository": {
43
42
  "type": "git",
44
- "url": "git+https://github.com/seydx/camera.ui.git"
43
+ "url": "git+https://github.com/cameraui/plugins.git",
44
+ "directory": "camera-ui-pamdiff"
45
45
  },
46
- "camera.ui": {
47
- "extensions": [
48
- "motionDetection"
49
- ],
50
- "dependencies": [],
51
- "bundled": true
52
- }
46
+ "files": [
47
+ "bundle.zip",
48
+ "CHANGELOG.md"
49
+ ]
53
50
  }