@camera.ui/camera-ui-ring 0.0.65 → 0.0.67

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-ring
1
+ # Ring
2
+
3
+ Integrates Ring cameras and doorbells into camera.ui. Handles device discovery, live streaming, and motion, battery, light, siren and doorbell events.
4
+
5
+ `@camera.ui/camera-ui-ring`
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "displayName": "Ring",
3
3
  "name": "@camera.ui/camera-ui-ring",
4
- "version": "0.0.65",
5
- "description": "Integrate Ring security cameras seamlessly. Access live feeds, manage recordings, and control Ring device settings.",
6
- "author": "seydx (https://github.com/seydx/camera.ui)",
4
+ "version": "0.0.67",
5
+ "description": "Integrates Ring cameras and doorbells into camera.ui, with device discovery, live streaming, and motion, battery, light, siren and doorbell events.",
6
+ "author": "seydx (https://github.com/cameraui/plugins)",
7
7
  "main": "./dist/index.js",
8
8
  "type": "commonjs",
9
9
  "scripts": {
10
- "build": "rimraf dist && npm run build:ring-client-api && tsc",
11
- "build:ring-client-api": "cd ../../externals/ring-client-api && npm run build && cd ../../plugins/camera-ui-ring",
10
+ "build": "rimraf dist && npm run build:ring && tsc",
11
+ "build:ring": "npm --prefix ../externals/ring ci --ignore-scripts && npm --prefix ../externals/ring run build",
12
12
  "bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
13
13
  "bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
14
14
  "format": "prettier --write \"src/\" --ignore-unknown --no-error-on-unmatched-pattern",
@@ -22,28 +22,27 @@
22
22
  "update": "updates --update ./"
23
23
  },
24
24
  "bugs": {
25
- "url": "https://github.com/seydx/camera.ui/issues"
25
+ "url": "https://github.com/cameraui/plugins/issues"
26
26
  },
27
27
  "engines": {
28
28
  "camera.ui": ">=0.0.66",
29
29
  "node": ">=22.0.0"
30
30
  },
31
- "homepage": "https://github.com/seydx/camera.ui#readme",
31
+ "homepage": "https://github.com/cameraui/plugins/tree/main/camera-ui-ring#readme",
32
32
  "keywords": [
33
33
  "camera-ui-plugin",
34
34
  "ring",
35
- "webrtc"
35
+ "cameras",
36
+ "doorbell"
36
37
  ],
37
38
  "license": "MIT",
38
39
  "repository": {
39
40
  "type": "git",
40
- "url": "git+https://github.com/seydx/camera.ui.git"
41
+ "url": "git+https://github.com/cameraui/plugins.git",
42
+ "directory": "camera-ui-ring"
41
43
  },
42
- "camera.ui": {
43
- "extensions": [
44
- "cameraController"
45
- ],
46
- "dependencies": [],
47
- "bundled": true
48
- }
44
+ "files": [
45
+ "bundle.zip",
46
+ "CHANGELOG.md"
47
+ ]
49
48
  }